Files
pyappengine/pyproject.toml
2024-02-26 13:08:42 +01:00

27 lines
626 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 = [
"systemd-python",
]
dynamic = ["version"]
[project.urls]
"Homepage" = "https://git.beafrancois.fr/Foue/pyappengine"
[tool.setuptools.dynamic]
version = {file = ["VERSION"]}