forked from pactools/pactools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (28 loc) · 831 Bytes
/
Copy pathsetup.py
File metadata and controls
30 lines (28 loc) · 831 Bytes
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
import setuptools # noqa # used with `python setup.py develop`
from distutils.core import setup
descr = """Estimation of phase-amplitude coupling (PAC) in neural time series,
including with driven auto-regressive (DAR) models."""
setup(
name='pactools',
version='0.4dev',
description=descr,
long_description=open('README.rst').read(),
license='BSD (3-clause)',
download_url='https://github.com/pactools/pactools.git',
url='http://github.com/pactools/pactools',
maintainer='Tom Dupre la Tour',
maintainer_email='tom.dupre-la-tour@m4x.org',
packages=[
'pactools',
'pactools.dar_model',
'pactools.utils',
],
install_requires=[
"numpy",
"scipy",
"matplotlib",
"scikit-learn",
"mne",
"h5py",
],
)