forked from jrialland/python-brain
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (29 loc) · 1007 Bytes
/
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
#!/usr/bin/env python
from setuptools import setup
import brain
setup(
name='pythonbrain',
version=brain.__version__,
author=brain.__author__,
author_email=brain.__email__,
url='http://github.com/jrialland/python-brain',
download_url='https://github.com/jrialland/python-brain/tarball/' +
str(brain.__version__),
packages=['brain'],
description='lightweight neural network library for Python',
provides=['brain'],
long_description='lightweight neural network library for Python',
zip_safe=True,
license=brain.__license__,
include_package_data=True,
keywords=['ia', 'neural network'],
classifiers=[
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Topic :: Software Development',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
]
)