-
Notifications
You must be signed in to change notification settings - Fork 11
/
Pipfile
62 lines (57 loc) · 1.08 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
[[source]]
name = "pypi"
url = "https://pypi.org/simple"
verify_ssl = true
[packages]
flatten-dict = ">=0.3.0"
numpy = "*"
[dev-packages]
Pillow = "*"
Sphinx = "==3.5.1"
black = "*"
featuretools = "*"
flake8 = "*"
flatten-dict = "*"
httpx = "*"
isort = "*"
kedro = "*"
"keyrings.alt" = ">=3.4.0"
matplotlib = "*"
memory-profiler = "*"
mlflow = "*"
nested-lookup = "*"
opencv-contrib-python = "*"
opencv-python = "*"
pandas = "*"
pandas-profiling = "*"
plotly = "*"
pynvml = "*"
pytest = "*"
pytest-cov = "*"
pytest-mock = "*"
pytorch-ignite = "*"
recommonmark = "==0.7.1"
requests = "*"
requests-mock = ">=1.8.0"
scikit-image = "*"
scikit-learn = "*"
seaborn = "*"
sphinx-autodoc-typehints = "==1.11.1"
sphinx-copybutton = "==0.3.1"
sphinx-rtd-theme = "==0.5.1"
torch = "*"
torch-vision = "*"
twine = "*"
typed-ast = "==1.4.2"
[requires]
python_version = "3.7"
[scripts]
fmt = "black src/"
install = "pip install pipelinex"
install_dev = "python setup.py develop"
lint = "black --check --diff src/"
sort = "isort -rc src/"
test = "pytest -v src/tests"
vet = "mypy src/"
[pipenv]
allow_prereleases = true