forked from davidsamu/seal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·46 lines (38 loc) · 1.25 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
from setuptools import setup
def readme():
with open('README.rst') as f:
return f.read()
setup(name='seal',
version='0.1',
license='GNU GPLv3',
description='Spiking and Spectral Electrophysiology data Analysis Library.',
long_description=readme(),
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)'
'Programming Language :: Python :: 3.5',
'Topic :: Scientific/Engineering'
],
keywords='neurophysiology electrophysiology spike spectral analysis',
url='http://github.com/davidsamu/seal',
author='David Samu',
author_email='[email protected]',
packages=['seal', 'seal/analysis', 'seal/object', 'seal/test', 'seal/util'],
install_requires=[
'numpy', # core
'scipy',
'pandas', # data analysis
'sklearn',
'matplotlib', # plotting
'seaborn',
'quantities', # neurophy
'neo',
'elephant',
],
test_suite='nose.collector',
tests_require=['nose'],
scripts=['bin/quality_test'],
include_package_data=True,
zip_safe=False
)