-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
81 lines (74 loc) · 2.76 KB
/
Copy pathpyproject.toml
File metadata and controls
81 lines (74 loc) · 2.76 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
[project]
name = "ctbk"
dynamic = ["version"]
description = "NYC Citi Bike trip data pipeline and visualization"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"aiobotocore>=2.22.0",
"boto3>=1.37.3",
"botocore>=1.37.3",
"click>=8.2.1",
"dvc-s3>=3.2.2",
"fsspec>=2025.5.1",
"geopy>=2.4.1",
"graphviz>=0.20.3",
"gzip-stream>=1.2.0",
"html_dsl>=0.5.0",
"kaleido>=0.2.1",
"lxml>=5.4.0",
"numpy>=2.2.6",
# Pinned for byte-reproducible parquet output
"pandas==2.3.3",
"plotly>=6.1.2",
"polars>=1.41.0",
# Pinned for byte-reproducible parquet output
"pyarrow==22.0.0",
"pyrmts",
"pyrmts-engine",
"pyrmts-ops",
"python-dateutil>=2.9.0.post0",
"s2cell>=1.8.0",
"s3fs>=2025.5.1",
"SQLAlchemy>=2.0.41",
"utz>=0.20.0",
"dvx",
"zarr>=2.18.3",
]
[tool.uv.sources]
# Pinned (default):
# dvx: pinned past v0.5.0 (PyPI's latest) for `cache comm` — the dir-manifest
# audit tool — plus `gc --safe`, the `.dvc`-rewrite/gitignore fixes,
# `write_dvc()` preserving committed `outs` when the output isn't local (so
# `prep` backfills provenance without materializing outputs), and
# `39062ef09`: record a tracked dep's `.dvc` out-hash on rewrite (not a
# worktree re-hash) — kills the phantom leaf-dep-hash a level-parallel `-f`
# reproc would otherwise record, which our audit diff must not see as a finding.
dvx = { git = "https://github.com/runsascoded/dvx.git", rev = "39062ef09" }
pyrmts = { git = "https://github.com/runsascoded/pyrmts.git", rev = "a174254", subdirectory = "python/pyrmts" }
pyrmts-engine = { git = "https://github.com/runsascoded/pyrmts.git", rev = "a174254", subdirectory = "python/pyrmts_engine" }
pyrmts-ops = { git = "https://github.com/runsascoded/pyrmts.git", rev = "a174254", subdirectory = "python/pyrmts_ops" }
# Local (dev) — swap all three together (the Python `pds l`): from ctbk, the
# `pyrmts` entry here is what resolves `pyrmts-engine`'s own `pyrmts` dep (its
# workspace source only applies inside the pyrmts repo). Don't commit this
# variant; note editable installs also break `gbfs/lambda/deploy.py`'s
# site-packages vendoring.
# pyrmts = { path = "/Users/ryan/c/pyrmts/python/pyrmts", editable = true }
# pyrmts-engine = { path = "/Users/ryan/c/pyrmts/python/pyrmts_engine", editable = true }
# pyrmts-ops = { path = "/Users/ryan/c/pyrmts/python/pyrmts_ops", editable = true }
[project.scripts]
ctbk = "ctbk.cli.main:main"
yms = "ctbk.cli.yms:yms"
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[tool.hatch.version]
source = "vcs"
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["ctbk"]
[dependency-groups]
dev = [
"pytest>=7.0",
]