-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
53 lines (47 loc) · 1013 Bytes
/
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
[tool.poetry]
name = "covid19-forecaster"
version = "2.0.0"
description = "Forecasting the revenue impact of COVID-19 on the City of Philadelphia's finances"
authors = ["Nick Hand <nicholas.adam.hand@gmail.com>"]
license = "MIT"
[tool.poetry.dependencies]
python = "^3.8"
pandas = "^1.2.2"
fbprophet = "^0.7.1"
phila-style = "^0.1.0"
matplotlib = "^3.3.4"
openpyxl = "^3.0.6"
phl-budget-data = "^0.1.2"
scikit-learn = "^0.24.1"
xlsxwriter = "^1.3.7"
seaborn = "^0.11.1"
altair = "^4.1.0"
desert = "^2020.11.18"
cached_property = "^1.5.2"
click = "^7.1.2"
[tool.poetry.dev-dependencies]
black = "^20.8b1"
jupyterlab = "^3.0.9"
jupyterlab_code_formatter = "^1.4.4"
isort = "^5.7.0"
[tool.poetry.scripts]
covid19-forecaster = "covid19_forecaster.run:main"
[tool.black]
line-length = 79
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"