forked from spyking-circus/spyking-circus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
133 lines (117 loc) · 6 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
from __future__ import print_function
import os
from os.path import join as pjoin
import sys, subprocess, re
requires = ['mpi4py', 'numpy', 'cython', 'scipy', 'matplotlib', 'h5py', 'colorama',
'psutil', 'tqdm', 'blosc', 'statsmodels', 'scikit-learn']
# if '--cuda' in sys.argv:
# sys.argv.remove('--cuda')
# try:
# subprocess.check_call(['nvcc', '--version'])
# requires += ['cudamat==0.3circus']
# HAVE_CUDA = True
# except (OSError, subprocess.CalledProcessError):
# print("CUDA not found")
# HAVE_CUDA = False
# else:
# HAVE_CUDA = False
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
if sys.version_info < (2, 7):
raise RuntimeError('Only Python versions >= 2.7 are supported')
if 'CONDA_BUILD' in os.environ and 'RECIPE_DIR' in os.environ:
# We seem to be running under a "conda build"
data_path = pjoin('data', 'spyking-circus')
else:
data_path = pjoin(os.path.expanduser('~'), 'spyking-circus')
# Find version number from `__init__.py` without executing it.
curdir = os.path.dirname(os.path.realpath(__file__))
filename = os.path.join(curdir, 'circus/__init__.py')
with open(filename, 'r') as f:
version = re.search(r"__version__ = '([^']+)'", f.read()).group(1)
def _package_tree(pkgroot):
path = os.path.dirname(__file__)
subdirs = [os.path.relpath(i[0], path).replace(os.path.sep, '.')
for i in os.walk(os.path.join(path, pkgroot))
if '__init__.py' in i[2]]
return subdirs
setup(name='spyking-circus',
version=version,
description='Fast spike sorting by template matching',
long_description=read('README.rst'),
url='http://spyking-circus.rtfd.org',
author='Pierre Yger and Olivier Marre',
author_email='[email protected]',
license='License :: OSI Approved :: UPMC CNRS INSERM Logiciel Libre License, version 2.1 (CeCILL-2.1)',
keywords="spike sorting template matching tetrodes extracellular",
packages=_package_tree('circus'),
setup_requires=['setuptools>0.18'],
#dependency_links=["https://github.com/yger/cudamat/archive/master.zip#egg=cudamat-0.3circus"],
install_requires=requires,
entry_points={
'console_scripts': [
'spyking-circus=circus.scripts.launch:main',
'spyking-circus-subtask=circus.scripts.subtask:main',
'circus-multi=circus.scripts.circus_multi:main',
'circus-folders=circus.scripts.circus_folders:main',
'circus-artefacts=circus.scripts.circus_artefacts:main',
'circus-gui-matlab=circus.scripts.matlab_gui:main',
'circus-gui-python=circus.scripts.python_gui:main'
],
'gui_scripts': [
'spyking-circus-launcher=circus.scripts.launch_gui:main'
]
},
extras_require={'beer': ['scikit-learn']},
package_data={'circus': ['config.params',
# Only include the actual GUI, not other test scripts
pjoin('matlab_GUI', 'SortingGUI.m'),
pjoin('matlab_GUI', 'SortingGUI.fig'),
pjoin('matlab_GUI', 'circusjoin.m'),
pjoin('matlab_GUI', 'circussplit.m'),
pjoin('matlab_GUI', 'DATA_SortingGUI.m'),
pjoin('icons', 'gimp-tool-color-picker.png'),
pjoin('icons', 'gimp-tool-free-select.png'),
pjoin('icons', 'logo.jpg'),
pjoin('icons', 'icon.png'),
pjoin('icons', 'gimp-tool-rect-select.png'),
pjoin('qt_GUI', 'qt_merge.ui'),
pjoin('qt_GUI', 'qt_preview.ui'),
pjoin('qt_GUI', 'qt_launcher.ui')]},
data_files=[(data_path, [pjoin('circus', 'config.params')]),
(pjoin(data_path, 'probes'), [pjoin('probes', 'mea_64.prb')]),
(pjoin(data_path, 'probes'), [pjoin('probes', 'mea_32.prb')]),
(pjoin(data_path, 'probes'), [pjoin('probes', 'small_mea_252.prb')]),
(pjoin(data_path, 'probes'), [pjoin('probes', 'small_mea_256.prb')]),
(pjoin(data_path, 'probes'), [pjoin('probes', 'wide_mea_252.prb')]),
(pjoin(data_path, 'probes'), [pjoin('probes', 'wide_mea_256.prb')]),
(pjoin(data_path, 'probes'), [pjoin('probes', 'imec.prb')]),
(pjoin(data_path, 'probes'), [pjoin('probes', 'kampff_32.prb')]),
(pjoin(data_path, 'probes'), [pjoin('probes', 'kampff_128.prb')]),
(pjoin(data_path, 'probes'), [pjoin('probes', 'mea_4225.prb')]),
(pjoin(data_path, 'probes'), [pjoin('probes', 'adrien.prb')]),
(pjoin(data_path, 'probes'), [pjoin('probes', 'emilie.prb')]),
(pjoin(data_path, 'probes'), [pjoin('probes', 'dan.prb')])],
use_2to3=True,
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Science/Research',
'License :: Other/Proprietary License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: Bio-Informatics'
],
zip_safe=False)
msg = ['################################################################################',
'# Probes files and parameter template have been copied to $HOME/spyking-circus #']
# if HAVE_CUDA:
# msg += ['# GPU support has been correctly installed #']
# else:
# msg += ['# GPU support was NOT installed. Be sure to have a valid nvcc command #']
msg += ['################################################################################']
for line in msg:
print(line)