-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (36 loc) · 1.19 KB
/
pyproject.toml
File metadata and controls
39 lines (36 loc) · 1.19 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
[project]
name = "napari-ome-zarr"
description = "A reader for zarr backed OME-Zarr images."
dynamic = ["version", "entry-points"]
license = "BSD-3-Clause"
readme = "README.md"
requires-python = ">=3.11"
authors = [
{name = "OME Team"}
]
classifiers = [
"Development Status :: 4 - Beta",
"Framework :: napari",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering :: Bio-Informatics",
]
dependencies = [
"ome-zarr>=0.13.0",
"napari>=0.4.0",
]
[project.urls]
"Bug Tracker" = "https://github.com/ome/napari-ome-zarr/issues"
"Documentation" = "https://github.com/ome/napari-ome-zarr#README.md"
"Source Code" = "https://github.com/ome/napari-ome-zarr"
"User Support" = "https://github.com/ome/napari-ome-zarr/issues"
"bsky" = "https://bsky.app/profile/openmicroscopy.org"
[build-system]
requires = ["setuptools>=80", "setuptools-scm[simple]>=9.2"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
version_file = "napari_ome_zarr/_version.py"