diff options
Diffstat (limited to 'pyproject.toml')
-rw-r--r-- | pyproject.toml | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/pyproject.toml b/pyproject.toml index b48e0f8..3904a2f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,12 +1,12 @@ [build-system] requires = [ - "setuptools" + "setuptools", + "setuptools-scm" ] build-backend = "setuptools.build_meta" [project] name = "argaze" -version = "0.0.7" authors = [ {"name" = "ACHIL laboratory at Ecole Nationale de l'Aviation Civile (ENAC)", "email" = "argaze-contact@recherche.enac.fr"} ] @@ -21,7 +21,7 @@ keywords=[ ] license = {file = "LICENSE"} classifiers=[ - "Development Status :: 3 - Alpha", + "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "Intended Audience :: Science/Research", "Topic :: Scientific/Engineering :: Human Machine Interfaces", @@ -42,6 +42,7 @@ dependencies = [ "scipy", "scikit-learn" ] +dynamic = ["version"] [project.urls] Homepage = "https://gitpub.recherche.enac.fr/argaze" @@ -51,3 +52,5 @@ Issues = "https://git.recherche.enac.fr/projects/argaze/issues" [tool.setuptools] package-dir = {"" = "src"} + +[tool.setuptools_scm] |