-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (30 loc) · 794 Bytes
/
pyproject.toml
File metadata and controls
32 lines (30 loc) · 794 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
[tool.poetry]
name = "fastapi-postgis"
version = "0.0.2"
description = ""
authors = ["Jakub Miazek <the@grillazz.com>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.12"
fastapi = "^0.114.2"
uvicorn = "^0.30.6"
uvloop = "^0.20.0"
httptools = "^0.6.1"
sqlalchemy = "^2.0.35"
pydantic-settings = "^2.5.2"
pydantic = {version = "^2.9.2", extras = ["email"]}
httpx = "^0.27.2"
pytest = "^8.3.3"
rich = "^13.8.1"
sqlalchemy-json = "^0.7.0"
geoalchemy2 = {version = "^0.15.2", extras = ["shapely"]}
geojson-pydantic = "^1.1.1"
psycopg = {extras = ["binary", "pool"], version = "^3.2.2"}
inline-snapshot = "^0.12.1"
dirty-equals = "^0.8.0"
polyfactory = "^2.17.0"
alembic = "^1.13.3"
ruff = "^0.6.8"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"