Skip to content

Commit

Permalink
Add setup file (#1)
Browse files Browse the repository at this point in the history
  • Loading branch information
akbargumbira authored Sep 25, 2017
1 parent dd2b47d commit 1cf0f77
Show file tree
Hide file tree
Showing 2 changed files with 34 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
30 changes: 30 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# 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.',
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 1cf0f77

Please sign in to comment.