summaryrefslogtreecommitdiff
path: root/pyproject.toml
diff options
context:
space:
mode:
Diffstat (limited to 'pyproject.toml')
-rw-r--r--pyproject.toml26
1 files changed, 26 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml
new file mode 100644
index 0000000..4c69154
--- /dev/null
+++ b/pyproject.toml
@@ -0,0 +1,26 @@
+[project]
+name = "artberry-backend"
+version = "0.1.0"
+description = "fastapi postgres artberry website backend"
+license = {text = "MIT"}
+requires-python = ">=3.14,<4.0"
+dependencies = [
+ "fastapi (>=0.135.1,<0.136.0)",
+ "uvicorn (>=0.41.0,<0.42.0)",
+ "pydantic (>=2.12.5,<3.0.0)",
+ "argon2 (>=0.1.10,<0.2.0)",
+ "redis (>=7.3.0,<8.0.0)",
+ "sqlalchemy (>=2.0.48,<3.0.0)",
+ "asyncpg (>=0.31.0,<0.32.0)",
+ "slowapi (>=0.1.9,<0.2.0)",
+]
+
+
+[build-system]
+requires = ["poetry-core>=2.0.0,<3.0.0"]
+build-backend = "poetry.core.masonry.api"
+
+[dependency-groups]
+dev = [
+ "ruff (>=0.15.6,<0.16.0)"
+]