forked from aigamedev/scikit-neuralnetwork
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
57 lines (48 loc) · 1.34 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
import os
import sys
from setuptools import setup, find_packages
pwd = os.path.abspath(os.path.dirname(__file__))
sys.path.append(pwd)
try:
README = open(os.path.join(pwd, 'docs/pypi.rst')).read()
except IOError:
README = ''
try:
import sknn
VERSION = sknn.__version__
except ImportError:
VERSION = 'N/A'
install_requires = [
'scikit-learn>=0.17',
'Theano>=0.8',
'Lasagne>=0.1',
'colorama' if sys.platform == 'win32' else '',
]
tests_require = [
'nosetests',
]
docs_require = [
'Sphinx',
]
setup(name='scikit-neuralnetwork',
version=VERSION,
description="Deep neural networks without the learning cliff! A wrapper library compatible with scikit-learn.",
long_description=README,
classifiers=[
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
],
keywords='deep learning, neural networks',
url='https://github.com/aigamedev/scikit-neuralnetwork',
license='BSD 3-clause license',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=install_requires,
extras_require={
'testing': tests_require,
'docs': docs_require,
},
)