-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
63 lines (57 loc) · 1.05 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 = "playground"
version = "0.1.1"
description = "plotly"
readme = "README.md"
authors = ["Data Science Team"]
packages = [
{ include = "utils"},
]
[tool.poetry.dependencies]
python = "3.7.4"
thrift-sasl= "*"
thrift = "*"
pandas = "*"
numpy = "*"
scipy = "*"
impyla = "*"
matplotlib = "*"
pyhive = "*"
sklearn = "*"
pandarallel = "*"
seaborn = "*"
jupyter = "*"
jupyter-client="5.2.4"
jupyter-console="6.0.0"
jupyter-core="4.4.0"
jupyterlab = "^1.2"
ipywidgets = "^7.5"
keplergl = "*"
statsmodels = "*"
chardet="3.0.4"
click="6.7"
Cython="0.28.2"
dash="0.21.0"
dash-core-components="0.22.1"
dash-html-components="0.10.0"
dash-renderer="0.12.1"
decorator="4.3.0"
nbformat="4.4.0"
pandas-datareader="0.6.0"
plotly="4.5.4"
python-dateutil="2.7.2"
pytz="2018.4"
requests="2.18.4"
urllib3="1.22"
Werkzeug="0.14.1"
[tool.poetry.dev-dependencies]
pytest = "^5.0.1"
pytest-cov = "^2.7"
black = "19.3b0"
pre-commit = "^1.18"
flake8 = "^3.7.9"
[tool.black]
line-length = 120
[build-system]
requires = ["poetry>=1.0.0"]
build-backend = "poetry.masonry.api"