-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
42 lines (36 loc) · 1.2 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
#!/usr/bin/env python
from setuptools import setup
def main():
setup(
name="pyneural",
version="0.1",
description="Neural Network Library for Python",
long_description="""
PyNeural provides a probabilistic random weight change algorithm implemented in python.
It should eventually take advantage of GPU's via python-cuda/pycuda.
""",
author=u"Justin Riley",
author_email="[email protected]",
license = "GPL2",
url="http://web.mit.edu/jtriley/www",
classifiers=[
'Environment :: Console',
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Other Audience',
'Intended Audience :: Science/Research',
'Natural Language :: English',
'Programming Language :: Python',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Mathematics',
],
# build info
packages=['pyneural'],
install_requires=[
"numpy",
],
package_dir={"pyneural": "pyneural"},
zip_safe = True,
)
if __name__ == '__main__':
main()