-
Notifications
You must be signed in to change notification settings - Fork 260
/
setup.py
74 lines (63 loc) · 1.66 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
import os
import codecs
from setuptools import setup, find_packages
version = '0.6.2.dev0'
here = os.path.abspath(os.path.dirname(__file__))
try:
README = codecs.open(os.path.join(here, 'README.rst'),
encoding='utf-8').read()
CHANGES = open(os.path.join(here, 'CHANGES.txt')).read()
except IOError:
README = CHANGES = ''
install_requires = [
'joblib',
'scikit-learn',
'tabulate',
'Lasagne',
'Theano',
]
visualization_require = [
'matplotlib<3.0.999',
'pydotplus',
'ipython<5.999'
]
tests_require = [
'mock',
'pytest',
'pytest-cov',
'pytest-flakes',
'pytest-pep8',
]
docs_require = [
'Sphinx<1.999',
]
gdbn_require = [
"gdbn"
]
all_require = (visualization_require + tests_require + docs_require + gdbn_require)
setup(name='nolearn',
version=version,
description="scikit-learn compatible neural network library",
long_description='\n\n'.join([README, CHANGES]),
classifiers=[
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.4",
],
keywords='',
author='Daniel Nouri',
author_email='[email protected]',
url='https://github.com/dnouri/nolearn',
license='MIT',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=install_requires,
extras_require={
'visualization': visualization_require,
'testing': tests_require,
'docs': docs_require,
'gdbn': gdbn_require,
'all': all_require,
},
)