-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
36 lines (33 loc) · 1.03 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
[tool.poetry]
name = "nevua"
version = "0.0.1"
description = "Dashboards to analyze the spread of the novel coronavirus."
authors = ["JJ Ben-Joseph <[email protected]>"]
license = "Apache"
repository = "https://www.github.com/jbenjoseph/nevua"
readme = "README.md"
keywords = ["machine_learning", "artificial_intelligence", "dashboard", "forecasting"]
classifiers = [
"Topic :: Scientific/Engineering :: Medical Science Apps.",
"Topic :: Scientific/Engineering :: Visualization",
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Operating System :: OS Independent"
]
[tool.poetry.dependencies]
python = "^3.12"
dash = "*"
plotly = "*"
pandas = "*"
numpy = "<2.0"
pmdarima = "*"
tqdm = "*"
[tool.poetry.dev-dependencies]
uwsgi = "*"
sigopt = "*"
[tool.poetry.scripts]
nevua = "nevua.__main__:main"