-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (39 loc) · 1009 Bytes
/
pyproject.toml
File metadata and controls
44 lines (39 loc) · 1009 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
38
39
40
41
42
43
44
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "cmcode"
version = "0.1.0"
description = "Caiman 2P analysis code for Proekt Lab"
requires-python = ">=3.10"
authors = [
{name = "Ethan Blackwood", email = "ethanbblackwood@gmail.com"}
]
dependencies = [
"asyncssh",
"caiman[jupyter]>=1.10.0",
"cellpose",
"dask",
"fastplotlib[notebook] @ git+ssh://git@github.com/ethanbb/fastplotlib.git@a16-numpy2",
"h5py",
"hdf5storage",
"ipympl",
"mesmerize-core",
"mesmerize-viz @ git+ssh://git@github.com/proektlab/mesmerize-viz",
"mslex",
"nest-asyncio",
"opencv-python",
"optype[numpy]",
"pydantic",
"scipy-stubs",
"suite2p @ git+ssh://git@github.com/proektlab/suite2p.git@proekt-dev",
"tabulate",
"torch",
"typing_extensions"
]
[project.scripts]
caimanlab = "cmcode.remote.caimanlab:main"
[tool.setuptools.packages.find]
include = ["cmcode*"]
[tool.pyright]
pythonVersion = "3.12"