forked from aigamedev/scikit-neuralnetwork
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
55 lines (46 loc) · 1.18 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
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, 'README.rst')).read()
except IOError:
README = ''
try:
import sknn
VERSION = sknn.__version__
except ImportError:
VERSION = 'N/A'
install_requires = [
'pylearn2',
'scikit-learn',
]
tests_require = [
'nosetests',
]
docs_require = [
'Sphinx',
]
setup(name='sknn',
version=VERSION,
description="Neural Network wrapper for pylearn2 compatible with scikit-learn.",
long_description=README,
classifiers=[
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.4",
],
keywords='deep learning, neural networks',
author='',
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,
},
)