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