-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
68 lines (59 loc) · 1.74 KB
/
pyproject.toml
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
[build-system]
requires = ["setuptools>=42.0.0", "setuptools-scm[toml]"]
build-backend = "setuptools.build_meta"
[project]
name = "napari-iohub"
description = "OME-Zarr viewer for napari with iohub as the I/O backend"
readme = "README.md"
requires-python = ">=3.10"
license = { file = "LICENSE" }
authors = [
{ name = "CZ Biohub SF and napari-iohub contributors", email = "iohub@czbiohub.org" },
]
dependencies = ["iohub>=0.1.0", "magicgui", "qtpy"]
dynamic = ["version"]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Framework :: napari",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Image Processing",
]
[project.optional-dependencies]
clustering = [
# https://github.com/BiAPoL/napari-clusters-plotter/pull/345
"napari-clusters-plotter@git+https://github.com/BiAPoL/napari-clusters-plotter.git@43f5f8297f41927eb5993b95092aaf9f90bb1583",
"ultrack",
"iohub==0.2.0a1",
]
all = ["napari[all]", "napari-iohub[clustering]"]
dev = [
"tox",
"pytest",
"pytest-cov",
"pytest-qt",
"black",
"ruff",
"napari-iohub[all]",
]
[project.entry-points."napari.manifest"]
"napari-iohub" = "napari_iohub:napari.yaml"
[tool.setuptools_scm]
write_to = "src/napari_iohub/_version.py"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
"*" = ["*.yaml"]
[tool.black]
line-length = 79
[tool.ruff]
src = ["src"]
lint.extend-select = ["I001"]
lint.isort.known-first-party = ["napari_iohub"]