diff options
Diffstat (limited to 'pyproject.toml')
| -rw-r--r-- | pyproject.toml | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..69c1d64 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,20 @@ +[project] +name = "emma-site" +version = "2.0.0" +description = "Default template for PDM package" +authors = [ + {name = "Emma Terzioglu", email = "emreterzioglu49@gmail.com"}, +] +dependencies = ["quart>=0.20.0", "hypercorn>=0.18.0", "asyncpg>=0.31.0", "asyncpg-trek>=0.4.0", "python-dotenv>=1.2.1", "marko>=2.2.2"] +requires-python = ">=3.10" +readme = "README.md" +license = {text = "GPL-3.0-only"} + + +[tool.pdm] +distribution = false + +[dependency-groups] +dev = [ + "asyncpg-stubs>=0.31.2", +] |
