-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·61 lines (61 loc) · 1.72 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
from distutils.core import setup
setup(name='ndk',
version='2.185',
description='Neurogram Deconvolution Kit',
author='Chris Connolly',
author_email='[email protected]',
url='http://www.neurome.com/',
packages = [ 'ndk', 'ndk.es', 'ndk.ds' ],
install_requires = [
'neo',
'wfdb',
'cqlsh',
'numpy',
'scipy',
'pandas',
'seaborn',
'joblib', # wtf?
# 'sqlite3',
'PyMySQL',
'scikit-learn',
'uritools',
'pyOpenGL',
'quantities',
'matplotlib',
'pyaudio',
'simpleaudio',
'sounddevice',
'bleak'
],
scripts = [ 'bin/audio',
'bin/addbasis',
'bin/autodate',
'bin/isi',
'bin/mkdb',
'bin/mkspikes',
'bin/mkcoefs',
'bin/mklabels',
'bin/mkevents',
'bin/cluster-kmeans',
'bin/cluster-gmm',
'bin/cluster-dpgmm',
'bin/cluster-dbscan',
'bin/profile',
'bin/profile2',
'bin/rmspikes',
'bin/rebasis',
'bin/reorg',
'bin/smrevents',
'bin/spikepca',
'bin/vcoefs',
'bin/vsignal',
'bin/cplot',
'bin/vrasters',
'bin/vscatter',
'bin/vwave',
'bin/ndk2wav',
'bin/neo2nbf',
'bin/wfdb2nbf',
'polar/h10record'
]
)