-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (47 loc) · 1.04 KB
/
pyproject.toml
File metadata and controls
51 lines (47 loc) · 1.04 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
[project]
name = "cal-itp-data-analyses"
version = "0.1.0"
requires-python = ">=3.11.0, <3.12.0"
dependencies = [
"nbdime>=4.0.4",
]
[tool.uv.workspace]
members = [
"calitp-data-analysis",
"_shared_utils",
"portfolio",
]
[tool.uv]
package = false
[dependency-groups]
dev = [
"shared-utils",
"segment-speed-utils",
"rt-analysis",
"ipykernel>=6.29.0",
"black==24.10.0",
"isort==5.10.1",
"pre-commit>=2.18.1",
]
portfolio = [
"axe-selenium-python",
"humanize~=4.6",
"jupyter-book==2.1.1",
"nbformat~=5.8",
"papermill~=2.4",
"pydantic>=2.0",
"pyaml==21.10.1",
"typer~=0.9",
]
test = [
{ include-group = "dev" },
"pytest>=9.0.2,<10.0.0",
"pytest-mock>=3.15.1,<4.0.0",
"pytest-recording>=0.13.4,<0.14.0",
"pytest-unordered>=0.7.0,<0.8.0",
]
[tool.uv.sources]
shared-utils = { workspace = true }
calitp-data-analysis = { workspace = true }
segment-speed-utils = { path = "./rt_segment_speeds", editable = true }
rt-analysis = { path = "./rt_delay", editable = true }