-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (54 loc) · 1.61 KB
/
Copy pathpyproject.toml
File metadata and controls
64 lines (54 loc) · 1.61 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
59
60
61
62
63
64
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "nmuwd"
version = "0.10.3"
description = "New Mexico Water Data Integration Engine"
readme = "README.md"
license = { text = "Apache-2.0" }
authors = [{ name = "Jake Ross" }]
requires-python = ">=3.14"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
dependencies = [
"click>=8.2.1",
"python-dotenv",
"frost_sta_client",
"geopandas",
"httpx",
"pandas",
"pymannkendall",
"pyyaml",
"types-pyyaml",
"urllib3>=2.2.0,<3.0.0",
]
[project.urls]
Homepage = "https://github.com/DataIntegrationGroup/DataIntegrationEngine"
[project.optional-dependencies]
dev = ["pytest", "mypy", "flake8"]
geoserver = ["psycopg2-binary", "GeoAlchemy2", "SQLAlchemy"]
gcs = ["google-cloud-storage"]
[project.scripts]
die = "frontend.cli:cli"
[tool.hatch.build.targets.wheel]
packages = ["frontend", "backend"]
[tool.pytest.ini_options]
testpaths = ["tests"]
# tests/test_sources hit live provider APIs over the network (slow, flaky);
# excluded from default collection. Run them explicitly when needed:
# uv run pytest tests/test_sources --override-ini="norecursedirs="
norecursedirs = ["tests/archived", "tests/test_sources"]
[tool.mypy]
ignore_missing_imports = true
# Archived tests are excluded from pytest (norecursedirs) and reference an old
# CLI API; don't type-check them either.
exclude = ["tests/archived/"]
[tool.dg]
directory_type = "project"
[tool.dg.cli]
suppress_warnings = ["project_and_activated_venv_mismatch"]
[tool.dg.project]
root_module = "orchestration"