forked from NeuroDataDesign/orange-panda-f16s17
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (34 loc) · 853 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
24
25
26
27
28
29
30
31
32
33
34
35
36
from distutils.core import setup
from setuptools import setup
import panda
VERSION = 1.13
setup(
name='ndd-panda',
packages=[
'panda',
'panda.methods',
'panda.utils',
'panda.bench'
],
scripts = [
'panda/scripts/panda_pipeline'
],
version=VERSION,
description='Neuro Data Design EEG Preprocessing Pipeline',
author='Ryan Marren and Nitin Kumar',
author_email='rmarren1@jhu.edu, nkumarcc@gmail.com',
url='https://github.com/NeuroDataDesign/orange-panda',
keywords=[
'eeg',
'pipeline'
],
classifiers=[],
install_requires=[ # We didnt put versions for numpy, scipy, b/c travis-ci
'numpy', # We use nump v1.10.4
'scipy', # We use 0.17.0
'seaborn',
'pywavelets',
'boto3',
'matplotlib',
]
)