-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
57 lines (43 loc) · 1.06 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
56
57
[tool.poetry]
name = "urban_heat"
description = "A simple backend supporting the Urban Heat app"
version = "2024"
repository = "https://github.com/damienallen/urban-heat"
license = "AGPL-3.0"
authors = ["Damien Allen <[email protected]>"]
homepage = "https://urbanheat.app"
readme = "README.md"
[tool.poetry.dependencies]
python = "~3.12"
fastapi = "^0.110.1"
beanie = "^1.25.0"
pydantic = "^2.7.0"
uvicorn = { extras = ["standard"], version = "^0.29.0" }
aiofiles = "^23.2.1"
aiotinydb = "^2.0.0"
httpx = "^0.27.0"
rasterio = "^1.3.9"
geopandas = "^0.14.3"
tinydb = "^4.8.0"
tqdm = "^4.66.2"
typer = "^0.12.3"
boto3 = "^1.34.107"
[tool.poetry.group.dev.dependencies]
mypy = "^1.10.0"
pre-commit = "^3.7"
ruff = "^0.4.3"
types-aiofiles = "^23.2.0.20240403"
types-pyyaml = "^6.0.12.20240311"
pytest = "^8.2.2"
[tool.black]
line-length = 99
[tool.ruff]
line-length = 99
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["E402"]
"**/tasks/*" = ["E712"]
[tool.mypy]
ignore_missing_imports = true
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"