-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (52 loc) · 1.49 KB
/
pyproject.toml
File metadata and controls
55 lines (52 loc) · 1.49 KB
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "eats-worm"
version = "0.0.3"
requires-python = "<3.14"
description = "Method for extracting GCaMP signal from volumetric imaging recordings"
readme = "README.md"
authors = [
{name = "UCSF FOCO Lab", email = "focolabdev@gmail.com"}
]
license = {text = "MIT License"}
classifiers = [
"Programming Language :: Python :: 3",
"Framework :: napari",
"License :: OSI zApproved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"numpy",
"scipy",
"tifffile",
"opencv-python-headless",
"matplotlib",
"foco-improc",
"npex @ git+https://github.com/focolab/npex",
"ndx-multichannel-volume @ git+https://github.com/focolab/ndx-multichannel-volume",
"imreg_dft",
"fastcluster==1.3.0; python_version >= '3.9'",
"fastcluster==1.2.6; python_version < '3.9'",
"pyqtgraph",
"magicgui",
"pandas",
"scikit-image",
"xmltodict",
"pynwb",
"nwbinspector",
"dandi",
"remfile",
# MacOS (Darwin) specific dependencies
"pyqt6; sys_platform == 'darwin'",
"napari[pyqt6_experimental]; sys_platform == 'darwin'",
# Linux/Windows specific dependencies
"napari[all]; sys_platform != 'darwin' and python_version >= '3.8'",
"napari; python_version < '3.8'"
]
[project.entry-points."napari.manifest"]
eats-worm = "eats_worm:napari.yaml"
[tool.setuptools]
packages = ["eats_worm"]
include-package-data = true