-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
55 lines (47 loc) · 1.34 KB
/
pyproject.toml
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
[tool.poetry]
packages = [{ include = "georeference" }]
name = "Virtuelles Kartenforum"
version = "0.1.0"
description = ""
authors = ["Nicolas Looschen <[email protected]>"]
readme = "README.md"
package-mode = false
[tool.poetry.dependencies]
python = "^3.10"
fastapi = "^0.111.0"
sqlmodel = "^0.0.19"
sqlalchemy = "^2.0.31"
gdal = "3.9.0"
pillow = "^10.4.0"
pyproj = "^3.6.1"
psycopg2-binary = "^2.9.9"
shapely = "^2.0.4"
pydantic-settings = "^2.3.4"
debugpy = "^1.8.2"
requests = "^2.32.3"
loguru = "^0.7.2"
geojson-pydantic = "^1.1.0"
lockfile = "^0.12.2"
elasticsearch = {version = "^7", extras = ["async"]}
numpy = "<2"
sentry-sdk = { extras = ["loguru"], version = "^2.12.0" }
python-daemon = "2.3.0"
streaming-form-data = "^1.16.0"
[tool.poetry.group.test.dependencies]
pytest = "^8.2.2"
testcontainers = { extras = ["postgres"], version = "^4.7.1" }
pytest-testmon = "^2.1.1"
pytest-xdist = "^3.6.1"
[tool.poetry.group.dev.dependencies]
ruff = "^0.5.0"
pre-commit = "^3.7.1"
debugpy = "^1.8.2"
alembic = "^1.13.2"
[tool.poetry.scripts]
start-daemon = "georeference.daemon.runner:runner"
kill-daemon = "georeference.daemon.runner:kill"
start-job-loop = "georeference.daemon.runner_lifecycle:run_without_daemon"
fix-tms = "georeference.scripts.fix_tms:main"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"