forked from pesser/edflow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (31 loc) · 824 Bytes
/
setup.py
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
from setuptools import setup, find_packages
setup(
name="edflow",
version="0.2",
description="Logistics for Deep Learning",
url="https://github.com/pesser/edflow",
author="Mimo Tilbich et al.",
author_email="{patrick.esser, johannes.haux}" "@iwr.uni-heidelberg.de",
license="MIT",
packages=find_packages(),
install_requires=[
"pyyaml",
"opencv-python",
"tqdm",
"Pillow",
"chainer",
"numpy",
"scipy",
"h5py",
"scikit-learn",
"scikit-image",
"natsort",
"pandas",
"psutil",
"pytest",
"deprecated",
],
extras_require={"docs": ["sphinx >= 1.4", "sphinx_rtd_theme", "numpy"]},
zip_safe=False,
scripts=["edflow/edflow", "edflow/edcache", "edflow/edlist"],
)