-
Notifications
You must be signed in to change notification settings - Fork 245
/
setup.py
103 lines (94 loc) · 2.04 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
import setuptools
from setuptools import setup
install_deps = [
'numpy>=1.20.0,<2.0.0',
'scipy',
'scikit-learn',
'tqdm',
'torch>=1.6',
'numba',
'faiss-cpu',
'psutil'
]
gui_deps = [
'pyqtgraph>=0.13.0',
'qtpy',
'pyqt6',
'pyqt6.sip',
'matplotlib'
]
docs_deps = [
'sphinx>=3.0',
'sphinxcontrib-apidoc',
'nbsphinx',
'myst_parser',
'sphinx_rtd_theme',
'pandoc'
]
### remove torch install if already installed
try:
import torch
a = torch.ones(2, 3)
version = int(torch.__version__.split(".")[1])
if version >= 6:
install_deps.remove("torch>=1.6")
except:
pass
### remove pyqt6 install if other qt backend installed
try:
import PyQt5
gui_deps.remove("pyqt6")
gui_deps.remove("pyqt6.sip")
gui_deps.append("pyqt5")
gui_deps.append("pyqt5.sip")
except:
pass
try:
import PySide2
gui_deps.remove("pyqt6")
gui_deps.remove("pyqt6.sip")
except:
pass
try:
import PySide6
gui_deps.remove("pyqt6")
gui_deps.remove("pyqt6.sip")
except:
pass
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="kilosort",
license="BSD",
author="Marius Pachitariu",
author_email="[email protected]",
description="spike sorting pipeline",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/MouseLand/kilosort",
setup_requires=[
'pytest-runner',
'setuptools-scm',
],
packages=setuptools.find_packages(),
use_scm_version=True,
install_requires=install_deps,
tests_require=[
'pytest'
],
extras_require={
'docs': docs_deps,
'gui': gui_deps,
'all': gui_deps,
},
include_package_data=True,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
],
entry_points={
'console_scripts': [
]
}
)