-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
64 lines (60 loc) · 1.39 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
[tool.poetry]
name = "predictive-parking"
version = "0.11.1"
description = "Predicting parking meter availability for ParkColumbus"
authors = ["Dan Moore <daniel.r.moore@accenture.com>"]
classifiers = ["Private :: Not for PyPI"]
[tool.poetry.dependencies]
python = "^3.8"
numpy = "^1.18.1"
pandas = "^1.0"
hvac = "^0.10.1"
boto3 = "~1.14.0"
pyodbc = "^4.0.30"
cachetools = "^4.1.0"
quart = "^0.13.0"
websockets = "^8.1"
python-dateutil = "^2.8.1"
requests = "^2.24.0"
backoff = "^1.10.0"
prometheus-client = "^0.8.0"
pydantic = "^1.6.1"
pendulum = "^2.1.2"
scipy = "^1.5.2"
ipywidgets = "^7.5.1"
scikit-learn = "^0.23.2"
[tool.poetry.dev-dependencies]
pystan = "^2.19.1"
fbprophet = "^0.7.1"
dotmap = "^1.3.14"
pytest = "^6.0.1"
mockito = "^1.2.1"
freezegun = "^0.3.15"
tqdm = "^4.48.2"
ipython = "^7.17.0"
notebook = "^6.1.3"
pylint = "^2.5.3"
pytest-asyncio = "^0.14.0"
moto = "^1.3.14"
GitPython = "^3.1.7"
geopandas = "^0.8.1"
networkx = "^2.4"
osmnx = "^0.15.1"
matplotlib = "^3.3.1"
colorcet = "^2.0.2"
hypothesis = "^5.29.0"
hypothesis-jsonschema = "^0.17.3"
rfc3339-validator = "^0.1.2"
pytest-mockito = "^0.0.4"
hypothesis-pytest = "^0.19.0"
mypy = "^0.782"
pytest-mypy = "^0.7.0"
pytest-cov = "^2.10.1"
feather-format = "^0.4.1"
responses = "^0.12.0"
sktime = "^0.4.1"
jupyter_contrib_nbextensions = "^0.5.1"
seaborn = "^0.11.0"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"