forked from MouseLand/suite2p
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
125 lines (113 loc) · 2.73 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
import setuptools
install_deps = ["importlib-metadata",
"natsort",
"rastermap>=0.9.0",
"tifffile",
"torch>=1.13.1",
"numpy>=1.24.3",
"numba>=0.57.0",
"matplotlib",
"scipy>=1.9.0",
"scikit-learn",
"cellpose",
"scanimage-tiff-reader>=1.4.1"
]
gui_deps = [
"qtpy",
"pyqt6",
"pyqt6.sip",
"pyqtgraph",
]
io_deps = [
"paramiko",
"nd2",
"sbxreader",
"h5py",
"opencv-python-headless",
"xmltodict",
"dcimg"
]
nwb_deps = [
"pynwb>=2.3.2",
]
test_deps = [
"pytest",
"tenacity",
"tqdm",
"pynwb>=2.3.2", #this is needed as test_io contains a test with nwb
"pytest-qt>3.3.0",
]
# check if pyqt/pyside already installed
try:
import PyQt5
gui_deps.remove("pyqt6")
gui_deps.remove("pyqt6.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
all_deps = gui_deps + nwb_deps + test_deps + io_deps
try:
import torch
a = torch.ones(2, 3)
major_version, minor_version, _ = torch.__version__.split(".")
if major_version == "2" or int(minor_version) >= 6:
install_deps.remove("torch>=1.6")
except:
pass
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="suite2p",
author="Marius Pachitariu and Carsen Stringer",
author_email="[email protected]",
description="Pipeline for calcium imaging",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/MouseLand/suite2p",
packages=setuptools.find_packages(),
setup_requires=[
"pytest-runner",
"setuptools_scm",
],
use_scm_version=True,
install_requires=install_deps,
tests_require=test_deps,
extras_require={
"docs": [
"sphinx>=3.0",
"sphinxcontrib-apidoc",
"sphinx_rtd_theme",
"sphinx-prompt",
"sphinx-autodoc-typehints",
],
"gui": gui_deps,
"nwb": nwb_deps,
"io": io_deps,
"tests": test_deps,
"all": all_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": [
"suite2p = suite2p.__main__:main",
"reg_metrics = benchmarks.registration_metrics:main",
"tiff2scanimage = scripts.make_tiff_scanimage_compatible:main",
]
},
)