-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (38 loc) · 1 KB
/
pyproject.toml
File metadata and controls
42 lines (38 loc) · 1 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
[project]
name = "path-data"
version = "0.0.1"
description = "PATH ridership data analysis and visualization"
requires-python = ">=3.11"
dependencies = [
"dvx[s3] @ git+https://github.com/runsascoded/dvx@28c6b9aad",
"fastparquet==2024.11.0",
"ipython", # required by `utz.plots` (imports `IPython.display.Image`)
"joblib",
"kaleido",
"numpy>=2",
"openpyxl==3.1.5",
"pandas>=3",
"plotly",
"PyPDF2",
"tabula-py",
"thrds @ git+https://github.com/runsascoded/thrds@3cb9a0f",
"utz",
"xlsxwriter",
]
# Optional EDA-only deps. The pipeline runs without these — they're only
# needed for running the legacy `*.ipynb` notebooks interactively as
# reference/exploration.
[project.optional-dependencies]
eda = [
"jupyter",
"juq.py>=0.5.1",
"papermill",
"tornado<=6.1",
]
[project.scripts]
path-data = "path_data.cli.main:main"
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["path_data"]