-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
27 lines (25 loc) · 1014 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
#!/usr/bin/env python
from distutils.core import setup
setup(
name='klusta-pipeline',
version='0.0.2',
description='data pipeline for analyzing spike2 collected data in klustakwik ',
author='Justin Kiggins',
author_email='[email protected]',
packages=['klusta_pipeline',
],
entry_points={
'console_scripts': [
'make_kwd = klusta_pipeline.make_kwd:main',
'merge_stim_kwik = klusta_pipeline.merge_stim_kwik:main',
'display_probe = klusta_pipeline.probe:_display',
'kwd2dat = klusta_pipeline.kwd2dat:main',
'kwd2mda = klusta_pipeline.kwd2mda:main',
'make_mat_chanMap = klusta_pipeline.make_mat_chanMap:main',
'make_kilo_scripts = klusta_pipeline.make_kilo_scripts:main',
'make_mtn_config = klusta_pipeline.make_mtn_config:main',
'kilo2kwik = klusta_pipeline.kilo2kwik:main',
'mda2kwik = klusta_pipeline.mda2kwik:main'
],
},
)