--- a +++ b/setup.py @@ -0,0 +1,33 @@ +from setuptools import setup + + +setup( + name='pyeeg', + version='0.4.4', + description='A Python module to extract EEG features', + url='https://github.com/forrestbao/pyeeg', + author='Forrest Bao and all contributors', + license='GNU GPL v3', + packages=['pyeeg'], + install_requires=[ + 'numpy>=1.9.2', + ], + test_suite='tests', + classifiers=[ + 'Development Status :: 4 - Beta', + 'Environment :: Console', + 'Intended Audience :: Science/Research', + 'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)', + 'Operating System :: OS Independent', + 'Programming Language :: Python :: 2', + 'Programming Language :: Python :: 2.7', + 'Programming Language :: Python :: 3', + 'Programming Language :: Python :: 3.3', + 'Programming Language :: Python :: 3.4', + 'Programming Language :: Python :: 3.5', + 'Programming Language :: Python :: 3.6', + 'Topic :: Scientific/Engineering :: Bio-Informatics', + 'Topic :: Scientific/Engineering :: Information Analysis', + 'Topic :: Scientific/Engineering :: Mathematics', + ], +)