forked from EKK-Ingarden/LandsatWebTracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (49 loc) · 1.13 KB
/
Copy pathpyproject.toml
File metadata and controls
58 lines (49 loc) · 1.13 KB
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
58
# This configuration idealy should be in backend/
# But Pycharm doesn't correctly recognize it
[tool.poetry]
name = "landsat-web-tracker"
version = "0.0.1"
description = ""
authors = ["EKK Ingarden"]
license = "GPL-3.0"
readme = "README.md"
packages = [{include = "backend"}]
[tool.poetry.dependencies]
python = "^3.12"
fastapi = {extras = ["standard"], version = "^0.115.0"}
uvicorn = { extras = ["standard"], version = "^0.30.6" }
structlog = "^24.4.0"
sqlalchemy = "^2.0.35"
psycopg2 = "^2.9.9"
pydantic-settings = "^2.5.2"
pydantic = "2.9.2"
pystac-client = "^0.8.3"
supabase = "^2.7.4"
planetary-computer = "^1.0.0"
httpx = "^0.27.2"
numpy = "^2.1.1"
pillow = "^10.4.0"
resend = "^2.4.0"
[tool.poetry.dev-dependencies]
pytest = "^8.3.3"
[tool.poetry.scripts]
openapi = "backend.utils.utils:write_openapi"
[tool.poetry.group.dev.dependencies]
ruff = "^0.1.9"
[tool.ruff.per-file-ignores]
"__init__.py" = ["F401"]
[tool.ruff]
line-length = 120
select = [
# Pyflakes
"F",
# Pycodestyle
"E",
"W",
# isort
"I001",
]
src = ["backend"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"