41 lines
925 B
TOML
41 lines
925 B
TOML
[build-system]
|
|
requires = ["setuptools", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "pyappengine"
|
|
authors = [
|
|
{ name="François Dausseur", email="fdausseur@free.fr" },
|
|
]
|
|
description = "Python application engine"
|
|
readme = "README.md"
|
|
requires-python = ">=3.7"
|
|
classifiers = [
|
|
"Programming Language :: Python :: 3",
|
|
"License :: OSI Approved :: CeCILL-C",
|
|
"Operating System :: OS Independent",
|
|
]
|
|
dependencies = [ ]
|
|
dynamic = ["version"]
|
|
|
|
[project.optional-dependencies]
|
|
docs = [
|
|
"mkdocs>=1.5",
|
|
"mkdocs-material>=9.0",
|
|
"mkdocstrings[python]>=0.24",
|
|
]
|
|
dev = [
|
|
"pytest>=8.0",
|
|
"pytest-cov>=5.0",
|
|
]
|
|
|
|
[tool.pytest.ini_options]
|
|
testpaths = ["tests"]
|
|
pythonpath = ["src", "tests"]
|
|
addopts = "--cov=appengine --cov-report=term-missing"
|
|
|
|
[project.urls]
|
|
"Homepage" = "https://git.beafrancois.fr/Foue-opensource/pyappengine"
|
|
|
|
[tool.setuptools.dynamic]
|
|
version = {file = ["VERSION"]} |