66 lines
1.6 KiB
TOML
66 lines
1.6 KiB
TOML
# Package for PostgreSQL ddd_domain database.
|
|
# You can edit the following parameters:
|
|
# - version (in ddd_domain/version.txt)
|
|
# - authors
|
|
# - license
|
|
# - keywords
|
|
# - description
|
|
|
|
[build-system]
|
|
requires = ["setuptools>=61.0", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "ddd_domain"
|
|
dynamic = ["version"]
|
|
description = "Package for ddd_domain PostgreSQL database"
|
|
readme = "README.md"
|
|
keywords = []
|
|
authors = [
|
|
{name = "Your Name", email = "your.email@example.com"}
|
|
]
|
|
license = "MIT"
|
|
classifiers = [
|
|
# How mature is this project? Common values are
|
|
# 3 - Alpha
|
|
# 4 - Beta
|
|
# 5 - Production/Stable
|
|
"Development Status :: 3 - Alpha",
|
|
|
|
# Indicate who your project is intended for
|
|
"Intended Audience :: Developers",
|
|
"Topic :: Software Development :: Build Tools",
|
|
|
|
# Specify the Python versions you support here
|
|
"Programming Language :: Python :: 3.9",
|
|
"Programming Language :: Python :: 3.10",
|
|
"Programming Language :: Python :: 3.11",
|
|
"Programming Language :: Python :: 3.12",
|
|
"Programming Language :: Python :: 3.13",
|
|
"Programming Language :: Python :: 3.14",
|
|
]
|
|
requires-python = ">=3.9"
|
|
dependencies = [
|
|
"half_orm_dev==1.0.0-a32",
|
|
]
|
|
|
|
[project.urls]
|
|
Homepage = "https://a38.benbart.fr/amsleaveamix/ddd_domain"
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"pytest",
|
|
"pytest-asyncio",
|
|
]
|
|
|
|
[tool.pytest.ini_options]
|
|
pythonpath = ["."]
|
|
asyncio_mode = "auto"
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["."]
|
|
exclude = ["contrib", "docs", "tests", "patches", "svg"]
|
|
|
|
[tool.setuptools.dynamic]
|
|
version = {file = "ddd_domain/version.txt"}
|