Skip to content

Commit fc58b6a

Browse files
committed
add poetry package env simple, incomplete; edit README
1 parent a4222e9 commit fc58b6a

File tree

17 files changed

+33
-3
lines changed

17 files changed

+33
-3
lines changed

README.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,15 @@
44

55
_`pyrenew-flu-light` is an instantiation of an [Epidemia](https://imperialcollegelondon.github.io/epidemia/) influenza forecasting model in [PyRenew](https://github.com/CDCgov/PyRenew)._
66

7-
NOTE: Presently, this `pyrenew-flu-light` cannot be installed and used with current NHSN, as its author is validating it on historical influenza data, which is .
7+
NOTE: Presently, this `pyrenew-flu-light` cannot be installed and used with current NHSN, as its author is validating it on historical influenza data.
8+
9+
Run command typically used:
10+
11+
```
12+
poetry run python tut_epim_port_msr.py --reporting_date 2024-01-20 --regions NY --historical --forecast
13+
14+
python3 tut_epim_port_msr.py --reporting_date 2024-01-20 --regions NY --historical --forecast
15+
```
816

917
## ...Contained Within This Repository
1018

pyproject.toml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
[tool.poetry]
2+
name = "pyrenew-flu-light"
3+
version = "0.0.1"
4+
description = "An instantiation of an Epidemia influenza forecasting model in PyRenew."
5+
authors = ["CFA"]
6+
license = "Apache-2.0"
7+
readme = "README.md"
8+
packages = [{include = "pyrenew_flu_light"}]
9+
10+
11+
[tool.poetry.dependencies]
12+
python = "^3.11"
13+
polars = "^1.5.0"
14+
numpyro = "^0.15.2"
15+
arviz = "^0.19.0"
16+
17+
[tool.poetry.group.dev.dependencies]
18+
rpy2 = "^3.5.16"
19+
20+
[build-system]
21+
requires = ["poetry-core"]
22+
build-backend = "poetry.core.masonry.api"
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)