forked from tridesclous/tridesclous
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
57 lines (53 loc) · 1.84 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
from setuptools import setup
import os
d = {}
exec(open("tridesclous/version.py").read(), None, d)
version = d['version']
install_requires = [
'numpy',
'scipy',
'pandas',
'openpyxl',
'scikit-learn',
'matplotlib',
'seaborn',
'neo',
'tqdm',
# 'PyQt5', make conda buggy
'pyqtgraph',
'joblib',
'numba',
'hdbscan',
'loky',
]
extras_require={
'online' : ['pyacq',],
'opencl' : ['pyopencl'],
}
long_description = ""
setup(
name = "tridesclous",
version = version,
packages = ['tridesclous', 'tridesclous.gui', 'tridesclous.gui.icons',
'tridesclous.online', 'tridesclous.scripts', 'tridesclous.tests'],
install_requires=install_requires,
extras_require = extras_require,
author = "C. Pouzat, S.Garcia",
author_email = "",
description = "offline/online spike sorting with french touch that light the barbecue",
long_description = long_description,
entry_points={
'console_scripts': ['tdc=tridesclous.scripts.tdc:main'],
#~ 'gui_scripts': ['tdcgui=tridesclous.scripts.tdc:open_mainwindow'],
},
license = "MIT",
url='https://github.com/tridesclous/trisdesclous',
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering']
)