forked from Eden-Kramer-Lab/spectral_connectivity
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
23 lines (20 loc) · 736 Bytes
/
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
#!/usr/bin/env python3
from setuptools import setup, find_packages
INSTALL_REQUIRES = ['numpy >= 1.11', 'pandas >= 0.18.0', 'scipy', 'xarray',
'matplotlib']
TESTS_REQUIRE = ['pytest >= 2.7.1', 'nitime']
setup(
name='spectral_connectivity',
version='0.2.3.dev0',
license='GPL-3.0',
description=('Frequency domain functional and directed'
'connectivity analysis tools for electrophysiological'
'data'),
author='Eric Denovellis',
author_email='[email protected]',
url='https://github.com/Eden-Kramer-Lab/spectral_connectivity',
python_requires='>=3',
packages=find_packages(),
install_requires=INSTALL_REQUIRES,
tests_require=TESTS_REQUIRE,
)