-
Notifications
You must be signed in to change notification settings - Fork 60
/
setup.py
48 lines (43 loc) · 1.27 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
46
47
48
#!/usr/bin/env python
from __future__ import division, print_function, absolute_import
from setuptools import setup
import os
if os.getenv('READTHEDOCS'):
with open('requirements_docs.txt') as f:
required = f.read().splitlines()
else:
with open('requirements.txt') as f:
required = f.read().splitlines()
CLASSIFIERS = [
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Topic :: Scientific/Engineering',
]
args = dict(
name='deepdish',
version='0.3.4',
url="https://github.com/uchicago-cs/deepdish",
description="Deep Learning experiments from University of Chicago.",
maintainer='Gustav Larsson',
maintainer_email='[email protected]',
install_requires=required,
extras_require={
'image': ["skimage"],
},
scripts=['scripts/ddls'],
packages=[
'deepdish',
'deepdish.parallel',
'deepdish.io',
'deepdish.util',
],
license='BSD',
classifiers=CLASSIFIERS,
)
setup(**args)