-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
52 lines (48 loc) · 1.11 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
[project]
name = "montandon-etl"
version = "0.1.0"
description = ""
authors = [{ name = "Togglecorp Dev", email = "[email protected]" }]
requires-python = "~=3.12"
readme = "README.md"
dependencies = [
"django>=5.1.3,<6",
"django-environ",
"psycopg2-binary>=2.9.9,<3",
"flake8>=7.1.1,<8",
"celery[redis]>=5.4.0,<6",
"django-redis>=5.4.0,<6",
"django-celery-beat>=2.7.0,<3",
"pandas>=2.2.3,<3",
"lxml>=5.3.0,<6",
"pydantic>=2.10.2,<3",
"pystac-monty",
"requests>=2.32.3",
"geopandas",
]
[tool.uv.sources]
pystac-monty = { path = "libs/pystac-monty", editable = true }
[tool.black]
line-length = 125
# NOTE: Update in .pre-commit-config.yaml as well
extend-exclude = "(__pycache__|.*snap_test_.*\\.py|.+\\/.+\\/migrations\\/.*)"
[tool.isort]
profile = "black"
multi_line_output = 3
skip = [
"**/__pycache__",
"**/snap_test_*.py",
".venv/",
"**/migrations/*.py",
]
[tool.pyright]
exclude = [
"**/__pycache__",
"**/snap_test_*.py",
".venv/",
"**/migrations/*.py",
]
reportMissingImports = true
reportMissingTypeStubs = false
venvPath = "."
venv = ".venv"