-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (34 loc) · 769 Bytes
/
setup.py
File metadata and controls
37 lines (34 loc) · 769 Bytes
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
from setuptools import setup, find_packages
install_requires = [
"asyncssh",
"caiman>=1.10.0",
"cellpose",
"dask",
"fastplotlib~=0.1.0.a17",
"h5py",
"hdf5storage",
"ipympl",
"mesmerize-core",
"mesmerize-viz",
"mslex",
"nest-asyncio",
"opencv-python",
"optype[numpy]",
"pydantic",
"scipy-stubs",
"suite2p",
"torch",
"typing_extensions"
]
setup(
name="cmcode",
description="Caiman 2P analysis code for Proekt Lab",
version="0.1.0",
install_requires=install_requires,
packages=find_packages(),
entry_points={
'console_scripts': ['caimanlab = cmcode.remote.caimanlab:main']
},
author="Ethan Blackwood",
author_email="ethanbb@pennmedicine.upenn.edu"
)