|
a |
|
b/setup.py |
|
|
1 |
from setuptools import setup |
|
|
2 |
|
|
|
3 |
|
|
|
4 |
setup( |
|
|
5 |
name='pyeeg', |
|
|
6 |
version='0.4.4', |
|
|
7 |
description='A Python module to extract EEG features', |
|
|
8 |
url='https://github.com/forrestbao/pyeeg', |
|
|
9 |
author='Forrest Bao and all contributors', |
|
|
10 |
license='GNU GPL v3', |
|
|
11 |
packages=['pyeeg'], |
|
|
12 |
install_requires=[ |
|
|
13 |
'numpy>=1.9.2', |
|
|
14 |
], |
|
|
15 |
test_suite='tests', |
|
|
16 |
classifiers=[ |
|
|
17 |
'Development Status :: 4 - Beta', |
|
|
18 |
'Environment :: Console', |
|
|
19 |
'Intended Audience :: Science/Research', |
|
|
20 |
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)', |
|
|
21 |
'Operating System :: OS Independent', |
|
|
22 |
'Programming Language :: Python :: 2', |
|
|
23 |
'Programming Language :: Python :: 2.7', |
|
|
24 |
'Programming Language :: Python :: 3', |
|
|
25 |
'Programming Language :: Python :: 3.3', |
|
|
26 |
'Programming Language :: Python :: 3.4', |
|
|
27 |
'Programming Language :: Python :: 3.5', |
|
|
28 |
'Programming Language :: Python :: 3.6', |
|
|
29 |
'Topic :: Scientific/Engineering :: Bio-Informatics', |
|
|
30 |
'Topic :: Scientific/Engineering :: Information Analysis', |
|
|
31 |
'Topic :: Scientific/Engineering :: Mathematics', |
|
|
32 |
], |
|
|
33 |
) |