Initial commit
This commit is contained in:
commit
3355b9d716
15 changed files with 1635 additions and 0 deletions
32
pyproject.toml
Normal file
32
pyproject.toml
Normal file
|
@ -0,0 +1,32 @@
|
|||
[project]
|
||||
name = "Gisaf"
|
||||
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",
|
||||
"sqlmodel>=0.0.11",
|
||||
"python-jose[cryptography]>=3.3.0",
|
||||
"geoalchemy2>=0.14.2",
|
||||
]
|
||||
requires-python = ">=3.11"
|
||||
readme = "README.md"
|
||||
license = {text = "MIT"}
|
||||
|
||||
[project.optional-dependencies]
|
||||
dev = [
|
||||
"ipdb>=0.13.13",
|
||||
]
|
||||
|
||||
[tool.pdm.version]
|
||||
source = "scm"
|
||||
write_to = "src/_version.py"
|
||||
write_template = "__version__ = '{}'"
|
Loading…
Add table
Add a link
Reference in a new issue