-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
48 lines (42 loc) · 1.35 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
[tool.poetry]
name = "cs-demand-model"
version = "0.5.1"
description = "Python port of Social Finance's children's social care demand model"
authors = ["dezog", "tab1tha", "kws"]
packages = [
{ include = "cs_demand_model" },
{ include = "cs_demand_model_samples" },
]
[tool.poetry.dependencies]
numpy = "^1.22.4"
pandas = "^1.4.2"
python = "^3.10"
python-dateutil = "^2.8.2"
fs = "^2.4.16"
click = "^8.1.3"
PyYAML = "^6.0"
matplotlib = { version = "^3.5.2", optional = true }
tqdm = { version = "^4.64.1", optional = true }
Flask = { version = "^2.1.2", optional = true }
Flask-Cors = { version = "^3.0.10", optional = true }
jupyterlab = { version = "^3.4.8", optional = true }
openpyxl = {version = "^3.0.10", optional = true}
plotly = {version = "^5.11.0", optional = true}
prpc-python = {extras = ["cli"], version = "^0.9.1"}
[tool.poetry.dev-dependencies]
pytest = "^7.1"
coverage = "^6.3"
black = "^22.8.0"
isort = "^5.10.1"
[tool.poetry.extras]
cli = ["matplotlib", "tqdm", "openpyxl"]
web = ["Flask", "Flask-Cors"]
jupyter = ["jupyterlab", "matplotlib", "tqdm", "openpyxl", "plotly"]
pyodide = ["openpyxl", "plotly"]
[tool.poetry.scripts]
demand-model = "cs_demand_model.__main__:cli"
[tool.poetry.plugins."prpc_python"]
demand-model = "cs_demand_model.rpc.api:app"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"