forked from lisphilar/covid19-sir
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
63 lines (60 loc) · 1.72 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
[tool.poetry]
name = "covsirphy"
version = "2.19.1"
description = "COVID-19 data analysis with phase-dependent SIR-derived ODE models"
authors = ["Hirokazu Takaya <[email protected]>"]
license = "Apache-2.0"
repository = "https://github.com/lisphilar/covid19-sir"
documentation = "https://lisphilar.github.io/covid19-sir/index.html"
readme = "docs/README.rst"
keywords = ["covid19", "covid", "data engineering", "data science"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Scientific/Engineering",
]
[tool.poetry.dependencies]
python = "^3.7"
numpy = "^1.18.5"
optuna = "^2.3.0"
pandas = "^1.1.5"
seaborn = "^0.11.1"
fsspec = {version = ">=0.8.5,<2021.5.0", extras = ["http"]}
scipy = "^1.4.1"
scikit-learn = "^0.24.0"
japanmap = ">=0.0.21,<0.0.25"
better-exceptions = "^0.3.2"
requests = "^2.25.1"
ruptures = "^1.1.1"
covid19dh = "^2.0.3"
tabulate = "^0.8.7"
matplotlib = "^3.2.1"
country-converter = "^0.7.1"
wbdata = "^0.3.0"
dask = {version = "^2020.12.0", extras = ["dataframe"]}
geopandas = "^0.9.0"
mapclassify = "^2.4.2"
Unidecode = "^1.2.0"
descartes = "^1.1.0"
[tool.poetry.dev-dependencies]
autopep8 = "^1.5.6"
flake8 = "^3.9.1"
kaggle = "^1.5.10"
Sphinx = "^3.4.3"
sphinx-rtd-theme = "^0.5.0"
sphinxcontrib-seqdiag = "^2.0.0"
nbsphinx = "^0.8.0"
jupyter = "^1.0.0"
pytest = "^6.2.2"
pytest-profiling = "^1.7.0"
pytest-cov = "^2.10.1"
sphinx-copybutton = "^0.3.1"
plotly = "^4.14.3"
recommonmark = "^0.7.1"
Pillow = "^8.1.2"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"