forked from ELEKTRONN/elektronn3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
45 lines (41 loc) · 1.06 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
import os
import versioneer
from setuptools import setup, find_packages
on_rtd = os.environ.get('READTHEDOCS') == 'True'
if on_rtd:
install_requires = []
else:
install_requires = [
'torch',
'numpy',
'scipy',
'h5py',
'matplotlib',
'numba',
'ipython',
'imageio',
'colorlog',
'tqdm',
'scikit-learn',
'scikit-image',
'tensorboardX',
'torchvision'
]
setup(
name='elektronn3',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description='Utilities for 3D CNNs in PyTorch',
url='https://github.com/ELEKTRONN/elektronn3',
author='ELEKTRONN team',
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
packages=find_packages(exclude=['scripts']),
install_requires=install_requires,
)