Skip to content

Commit

Permalink
Merge pull request #5 from akbargumbira/master
Browse files Browse the repository at this point in the history
Add setup file for easier installation
  • Loading branch information
yabata authored Sep 27, 2017
2 parents dd2b47d + 5311198 commit 2cce9c8
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .gitignore
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
33 changes: 33 additions & 0 deletions setup.py
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',
],
)

0 comments on commit 2cce9c8

Please sign in to comment.