generated from CDCgov/template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
62 lines (53 loc) · 2.21 KB
/
pyproject.toml
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
[tool.poetry]
name = "forecasttools"
version = "0.0.1"
description = "Python package for common pre- and post-processing operations done by CFA Predict for short term forecasting, nowcasting, and scenario modeling."
authors = ["CFA"]
license = "Apache-2.0"
readme = "README.md"
packages = [{include = "forecasttools"}]
repository = "https://github.com/CDCgov/forecasttools-py/"
keywords = ["forecasting", "infrastructure", "infectious-disease-modeling", "python"]
include = [
{ path = "forecasttools/location_table.parquet", format = "sdist" },
{ path = "forecasttools/location_table.parquet", format = "wheel" },
{ path = "forecasttools/example_flusight_submission.parquet", format = "sdist" },
{ path = "forecasttools/example_flusight_submission.parquet", format = "wheel" },
{ path = "forecasttools/example_flu_forecast_wo_dates.nc", format = "sdist" },
{ path = "forecasttools/example_flu_forecast_wo_dates.nc", format = "wheel" },
{ path = "forecasttools/example_flu_forecast_w_dates.nc", format = "sdist" },
{ path = "forecasttools/example_flu_forecast_w_dates.nc", format = "wheel" },
{ path = "forecasttools/nhsn_hosp_COVID.parquet", format = "sdist" },
{ path = "forecasttools/nhsn_hosp_COVID.parquet", format = "wheel" },
{ path = "forecasttools/nhsn_hosp_flu.parquet", format = "sdist" },
{ path = "forecasttools/nhsn_hosp_flu.parquet", format = "wheel" },
]
[tool.poetry.dependencies]
python = "^3.12"
arviz = "^0.20.0"
polars = "^1.8.2"
xarray = "^2024.9.0"
matplotlib = "^3.9.2"
epiweeks = "^2.3.0"
numpyro = "^0.17.0"
numpy = "^2.2.2"
tqdm = "^4.67.1"
[tool.poetry.group.dev.dependencies]
pre-commit = "^3.8.0"
ipykernel = "^6.29.5"
diffrax = "^0.6.0"
patsy = "^0.5.6"
nbformat = "^5.10.4"
nbclient = "^0.10.0"
jupyter = "^1.1.1"
jupyter-cache = "^1.0.1"
[tool.poetry.group.test.dependencies]
pytest = "^8.3.3"
[tool.poetry.urls]
"Repository Issues" = "https://github.com/CDCgov/forecasttools-py/issues"
"CDCgov Repositories" = "https://github.com/CDCgov"
"Package That Will Use Forecasttools" = "https://github.com/CDCgov/pyrenew-hew"
"Poetry Pyproject Page" = "https://python-poetry.org/docs/pyproject/"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"