-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5 from akbargumbira/master
Add setup file for easier installation
- Loading branch information
Showing
2 changed files
with
37 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
*~ | ||
*.pyc | ||
python/__pycache__\* | ||
python/__pycache__\* | ||
.idea/* | ||
dist/ | ||
python/pyrenn.egg-info |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# 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', | ||
url='http://github.com/yabata/pyrenn', | ||
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', | ||
], | ||
) |