diff options
author | Théo de la Hogue | 2024-09-12 17:32:49 +0200 |
---|---|---|
committer | Théo de la Hogue | 2024-09-12 17:32:49 +0200 |
commit | c6f6dd75bef943c4eef6353cab66628dc23abf6a (patch) | |
tree | 7cfeb83d43d7a13605661c72d8465b53872370aa | |
parent | 876a7febff3ad23f8c9faed7be960fccd7488eb9 (diff) | |
download | argaze-c6f6dd75bef943c4eef6353cab66628dc23abf6a.zip argaze-c6f6dd75bef943c4eef6353cab66628dc23abf6a.tar.gz argaze-c6f6dd75bef943c4eef6353cab66628dc23abf6a.tar.bz2 argaze-c6f6dd75bef943c4eef6353cab66628dc23abf6a.tar.xz |
using setuptools-scm
-rw-r--r-- | MANIFEST.in | 2 | ||||
-rw-r--r-- | pyproject.toml | 9 |
2 files changed, 6 insertions, 5 deletions
diff --git a/MANIFEST.in b/MANIFEST.in deleted file mode 100644 index 834544f..0000000 --- a/MANIFEST.in +++ /dev/null @@ -1,2 +0,0 @@ -include LICENSE -recursive-include . *.py *.md *.pdf *.obj *.blend *.json
\ No newline at end of file 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] |