-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
77 lines (67 loc) · 1.92 KB
/
pyproject.toml
File metadata and controls
77 lines (67 loc) · 1.92 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
[project]
name = "cfa-stf-routine-forecasting"
version = "0.1.0"
description = "Pipelines for forecasting respiratory diseases"
readme = "README.md"
requires-python = ">=3.13,<3.14"
authors = [
{name = "Damon Bayer", email = "xum8@cdc.gov"},
{name = "Dylan H. Morris"},
{name = "Subekshya Bidari"},
{name = "Jon Kislin", email = "qxk3@cdc.gov"}
]
dependencies = [
"pyrenew",
"pyrenew-multisignal",
"forecasttools",
"ipywidgets>=8.1.5",
"pyyaml>=6.0.2",
"jupyter>=1.0.0",
"ipykernel>=6.29.5",
"polars>=1.36",
"pypdf>=5.1.0",
"pyarrow>=18.0.0",
"pygit2>=1.17.0",
"tomli-w>=1.1.0",
"azuretools",
"rich>=14.0.0",
"dotenv>=0.9.9",
"polarbayes",
"dagster-postgres>=0.27.4",
"dagster-webserver==1.12.2",
"dagster==1.12.2",
"dagster-graphql==1.12.2",
"cfa-dagster",
"cfa-dataops",
"cfa-catalog-public>=2026.3.23.0",
]
[tool.hatch.build.targets.wheel]
packages = ["pipelines", "cfa"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.metadata]
allow-direct-references = true
[dependency-groups]
dev = [
{include-group = "test"}
]
test = [
"pytest>=8.3.2",
"pytest-cov>=5.0.0",
"pytest-mpl>=0.17.0"
]
[tool.ruff]
fix = true
[tool.ruff.lint]
select = ["I", "E4", "E7", "E9", "F", "UP"]
[tool.pytest.ini_options]
testpaths = ["pipelines/tests"]
[tool.uv.sources]
forecasttools = { git = "https://github.com/cdcgov/forecasttools-py" }
azuretools = { git = "https://github.com/cdcgov/cfa-azuretools" }
cfa-dagster = { git = "https://github.com/cdcgov/cfa-dagster.git", rev = "main" }
pyrenew-multisignal = {git = "https://github.com/CDCgov/pyrenew-multisignal", rev = "5938ec3"}
polarbayes = { git = "https://github.com/cdcgov/polarbayes", rev = "2f07215" }
cfa-dataops = {git = "https://github.com/CDCgov/cfa-dataops.git", rev = "main"}
cfa-catalog-public = {git = "https://github.com/cdcgov/cfa-catalog-pub.git"}