forked from octoenergy/timeserio
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Pipfile
41 lines (38 loc) · 1 KB
/
Pipfile
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
[[source]]
name = "pypi"
url = "https://pypi.org/simple"
verify_ssl = true
[dev-packages]
mccabe = "*"
pep8-naming = "*"
flake8 = "*"
pydocstyle = "*"
mypy = "*"
yapf = "*"
pytest = ">=5.3, <6"
pytest-cov = "*"
pytest-benchmark = "*"
pytest-xdist = "<2.0"
pytest-mock = "*"
moto = "*"
glob2 = "*"
codecov = "*"
#
dask = {extras = ["dataframe", "distributed"], version = "*"}
tensorflow = "==1.15.2"
pyarrow = ">=0.15.1"
# sphinx docs
sphinx-autodoc-typehints = ">=1.6.0"
sphinx-rtd-theme = ">=0.4.3"
m2r = ">=0.2.1"
sphinxcontrib-apidoc = ">=0.3.0"
nbsphinx = ">=0.4.2"
nbsphinx-link = ">=1.2.0"
ipython = ">=7.5.0"
# release tools
twine = "*"
tensorpandas = {git = "https://github.com/ig248/tensorpandas.git"}
[packages]
timeserio = {editable = true,path = "."}
[requires]
python_version = "3.6"