-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathsetup.py
35 lines (32 loc) · 1.02 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
# coding=utf-8
"""Setup file for distutils / pypi."""
try:
from ez_setup import use_setuptools
use_setuptools()
except ImportError:
pass
from setuptools import setup, find_packages
setup(
name='pyrenn',
version='0.1',
package_dir={'': 'python'},
py_modules=['pyrenn'],
license='GPL',
author='Dennis Atabay',
author_email = '[email protected]',
url='http://github.com/yabata/pyrenn',
download_url = 'https://github.com/yabata/pyrenn/archive/v0.1.tar.gz',
description='A recurrent neural network toolbox for Python and Matlab.',
install_requires=[
'numpy'
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
],
)