blob: b57d4147a54c8381b67f8ded4643140709bf472d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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"
|