summaryrefslogtreecommitdiff
path: root/pyproject.toml
diff options
context:
space:
mode:
authorEmma Terzioglu <emreterzioglu49@gmail.com>2026-03-13 13:49:15 -0700
committerEmma Terzioglu <emreterzioglu49@gmail.com>2026-03-13 13:49:15 -0700
commit7a33856a527aebbd8d2a624c6d5937c25c9a1d90 (patch)
tree855c642394e7ba1de40b8bb8737be12bec0aedaf /pyproject.toml
initial commit
new website repo yay!!!
Diffstat (limited to 'pyproject.toml')
-rw-r--r--pyproject.toml20
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",
+]