From 4e548c883c772e197764d7d3b6889291ada4c1fd Mon Sep 17 00:00:00 2001 From: alex Date: Wed, 3 Sep 2025 20:36:07 +0200 Subject: [PATCH] versionato toml --- pyproject.toml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 pyproject.toml diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..9aefd24 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,30 @@ +[project] +name = "ase" +version = "0.9.0" +description = "ASE backend" +readme = "README.md" +requires-python = ">=3.12" +dependencies = [ + "aiomysql>=0.2.0", + "cryptography>=45.0.3", + "mysql-connector-python>=9.3.0", + "pyftpdlib>=2.0.1", + "pyproj>=3.7.1", + "utm>=0.8.1", +] + +[dependency-groups] +dev = [ + "mkdocs>=1.6.1", + "mkdocs-gen-files>=0.5.0", + "mkdocs-literate-nav>=0.6.2", + "mkdocs-material>=9.6.15", + "mkdocstrings[python]>=0.29.1", +] + +[tool.setuptools] +package-dir = {"" = "src"} + +[tool.setuptools.packages.find] +exclude = ["test","build"] +where = ["src"] \ No newline at end of file