-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (25 loc) · 911 Bytes
/
setup.py
File metadata and controls
26 lines (25 loc) · 911 Bytes
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
#!/usr/bin/python
import setuptools
setuptools.setup(name = 'net',
version = '0.1',
description = 'Python Neural Network Library',
long_description = '''Putting Neural Networks together should be easier
than it usually is. The code in this repository presents simple Python
modules designed to make prototyping neural network architectures
quick.''',
author = 'Amitrajit Sarkar',
author_email = 'aaiijmrtt@gmail.com',
url = 'https://github.com/aaiijmrtt/NET',
license = 'MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Machine Learning :: Neural Networks',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3'
],
packages = ['net', 'bench', 'data'],
install_requires = ['numpy>=1.10', 'matplotlib>=1.5', 'pyopencl>=2015.2', 'dispy>=4.6'],
test_suite = 'test'
)