-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathrequirements.txt
More file actions
49 lines (40 loc) · 2.58 KB
/
requirements.txt
File metadata and controls
49 lines (40 loc) · 2.58 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
# requirements.txt
# =================
# CityCycle London — Python dependencies
#
# Install: pip install -r requirements.txt
#
# Note: google-cloud-bigquery and related packages are optional for
# local mock-data development. They are only needed when USE_MOCK_DATA=false.
# ── Data engineering ──────────────────────────────────────────────
pandas>=2.0.0
numpy>=1.25.0
pyarrow>=12.0.0 # Required by pandas BQ integration
# ── BigQuery (optional for dev — required for prod) ───────────────
google-cloud-bigquery>=3.11.0
google-cloud-bigquery-storage>=2.22.0 # faster BQ downloads
sqlalchemy>=2.0.0
sqlalchemy-bigquery>=1.8.0 # SQLAlchemy BQ adapter (Jupyter + GE)
db-dtypes>=1.1.0 # BQ type handling
# ── dbt ───────────────────────────────────────────────────────────
dbt-core>=1.7.0
dbt-bigquery>=1.7.0
# ── Meltano ───────────────────────────────────────────────────────
meltano>=3.3.0
# ── Great Expectations ────────────────────────────────────────────
great-expectations>=0.18.0
# ── Dagster ───────────────────────────────────────────────────────
dagster>=1.6.0
dagster-webserver>=1.6.0
# ── ML ────────────────────────────────────────────────────────────
scikit-learn>=1.3.0
joblib>=1.3.0
xgboost>=2.0.0 # alternative to RandomForest
# ── Dashboard ─────────────────────────────────────────────────────
streamlit>=1.32.0
pydeck>=0.8.0 # geospatial map
plotly>=5.18.0 # optional: richer charts
# ── Utilities ─────────────────────────────────────────────────────
python-dotenv>=1.0.0 # load .env file
faker>=20.0.0 # used in mock data generator
tqdm>=4.66.0 # progress bars