gisaf-backend/pyproject.toml

50 lines
1.1 KiB
TOML
Raw Normal View History

2023-11-06 17:04:17 +05:30
[project]
name = "gisaf"
2023-11-06 17:04:17 +05:30
dynamic = ["version"]
description = ""
authors = [
{name = "phil", email = "phil.dev@philome.mooo.com"},
]
dependencies = [
"fastapi>=0.104.1",
"uvicorn>=0.23.2",
"pandas>=2.1.1",
"geopandas>=0.14.0",
"psycopg2-binary>=2.9.9",
"sqlalchemy[asyncio]",
"asyncpg>=0.28.0",
"python-jose[cryptography]>=3.3.0",
"geoalchemy2>=0.14.2",
"pyyaml>=6.0.1",
"python-multipart>=0.0.6",
"pydantic-settings>=2.0.3",
"itsdangerous>=2.1.2",
"passlib[bcrypt]>=1.7.4",
"pyshp>=2.3.1",
"orjson>=3.9.10",
"sqlmodel>=0.0.14",
"redis>=5.0.1",
"websockets>=12.0",
"apscheduler>=3.10.4",
2023-11-06 17:04:17 +05:30
]
requires-python = ">=3.11"
readme = "README.md"
license = {text = "GPLv3"}
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
2023-11-06 17:04:17 +05:30
[project.optional-dependencies]
dev = [
"ipdb>=0.13.13",
"pretty-errors>=1.2.25",
2023-11-06 17:04:17 +05:30
]
2023-12-21 15:38:31 +05:30
contextily = ["contextily>=1.4.0"]
all = ["gisaf[contextily]"]
2023-11-06 17:04:17 +05:30
[tool.pdm.version]
source = "scm"
write_to = "gisaf/_version.py"
write_template = "__version__ = '{}'"