aboutsummaryrefslogtreecommitdiffstats
path: root/api/pyproject.toml
diff options
context:
space:
mode:
authorOle Mathias Aa. Heggem <olemathias.aa.heggem@gmail.com>2025-04-13 07:18:45 +0200
committerGitHub <noreply@github.com>2025-04-13 07:18:45 +0200
commit4ea3a099b05fa910498bfbf1b2d7387118355472 (patch)
treec248cf6764412471ee3e0d1218761bee19fb396a /api/pyproject.toml
parent09710c061d5b8ae86b3dfe49f4b8936c13a10535 (diff)
Upgrade bootstrap and rewrite API (#230)HEADmaster
Diffstat (limited to 'api/pyproject.toml')
-rw-r--r--api/pyproject.toml22
1 files changed, 22 insertions, 0 deletions
diff --git a/api/pyproject.toml b/api/pyproject.toml
new file mode 100644
index 0000000..b57d414
--- /dev/null
+++ b/api/pyproject.toml
@@ -0,0 +1,22 @@
+[project]
+name = "app"
+version = "0.1.0"
+description = ""
+requires-python = ">=3.10,<4.0"
+dependencies = [
+ "alembic>=1.15.2",
+ "fastapi[standard]>=0.115.12",
+ "psycopg[binary]>=3.2.6",
+ "pydantic>=2.11.3",
+ "pydantic-settings>=2.8.1",
+ "pynetbox>=7.4.1",
+ "redis[hiredis]>=5.2.1",
+ "sqlmodel>=0.0.24",
+]
+
+[tool.uv]
+dev-dependencies = []
+
+[build-system]
+requires = ["hatchling"]
+build-backend = "hatchling.build"