generated from reichlab/reichlab-python-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
68 lines (58 loc) · 1.59 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
63
64
65
66
67
68
[project]
name = "jacques_flu"
description = "Using jacques to analyze flu data"
license = {text = "MIT License"}
readme = "README.md"
requires-python = '>=3.10'
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
]
dynamic = ["version"]
dependencies = [
"scipy",
"structlog",
"rich",
"toml",
"pandas>=1.3.0",
"numpy>=1.26",
"tensorflow>=2.16.1,<3",
"tensorflow-probability==0.24.0",
"tf-keras>=2.16,<3",
"matplotlib >=3.5.1,<4",
"pymmwr",
"polars",
"pyarrow",
"timeseriesutils@git+https://github.com/reichlab/timeseriesutils/",
"jacques@git+https://github.com/reichlab/jacques#egg=BWRedits", # referencing my branch for local work
# 'data-pipeline@git+https://github.com/reichlab/flusion.git#subdirectory=code/data-pipeline',
]
[project.optional-dependencies]
dev = [
"coverage",
"freezegun",
"mypy",
"pre-commit",
"pytest",
"ruff",
"types-toml",
]
[project.entry-points."console_scripts"]
jacques_flu = "jacques_flu.app:main"
[build-system]
# Minimum requirements for the build system to execute.
requires = ["setuptools", "wheel"]
[tools.setuptools]
packages = ["jacques_flu"]
[tool.jacques_flu]
# to write json-formatted logs to disk, uncomment the following line specify the file location
# log_file = "/path/to/log/files/jacques_flu.log"
[tool.ruff]
line-length = 120
lint.extend-select = ["I", "Q"]
[tool.ruff.lint.flake8-quotes]
inline-quotes = "double"
[tool.ruff.format]
quote-style = "double"
[tool.setuptools.dynamic]
version = {attr = "jacques_flu.__version__"}