This commit is contained in:
Ruby 2026-02-01 20:04:27 +00:00
commit 897dae77ac
104 changed files with 16454 additions and 4622 deletions

View file

@ -6,11 +6,9 @@ readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"attrs>=22.2.0",
"httpx>=0.28.1",
"httpx[socks]>=0.28.1",
"ipywidgets>=8.0.0",
"journey-client",
"jupyter>=1.0.0",
"nest-asyncio>=1.6.0",
"numpy>=1.26.0",
"pandas>=2.0.0",
"plotly>=6.5.2",
@ -18,17 +16,31 @@ dependencies = [
"pyarrow>=15.0.0",
"python-dateutil>=2.8.0",
"tqdm>=4.67.1",
"fastapi[standard]>=0.115.0",
"uvicorn>=0.34.0",
"h3>=3.7.0",
"overturemaps>=0.18.0",
"fastexcel>=0.19.0",
"scipy>=1.17.0",
"matplotlib>=3.10.8",
"osmium>=4.0.0",
"matplotlib>=3.10.8",
"thefuzz>=0.22.1",
"scipy>=1.17.0",
"shapely>=2.0.0",
"rasterio>=1.5.0",
"pyproj>=3.7.2",
]
[dependency-groups]
dev = ["ruff>=0.8.0"]
[tool.uv]
environments = ["sys_platform == 'linux' and python_version < '3.14'"]
[tool.uv.sources]
journey-client = { path = "./tfl_journey_client" }
[dependency-groups]
dev = [
"deptry>=0.22.0",
"pytest>=9.0.2",
"ruff>=0.8.0",
]
[tool.deptry.per_rule_ignores]
# pyarrow/fastexcel: runtime backends for polars parquet/Excel I/O
# jupyter/ipywidgets/pandas: needed to run analysis notebooks
DEP002 = ["pyarrow", "fastexcel", "jupyter", "ipywidgets", "pandas"]
# pytest is a dev dependency, not a missing one
DEP004 = ["pytest"]