-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
62 lines (52 loc) · 1.37 KB
/
Copy pathpyproject.toml
File metadata and controls
62 lines (52 loc) · 1.37 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
56
57
58
59
60
61
62
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "omio-microscopy"
version = "0.3.0"
description = "OMIO: Open Microscopy Image I/O"
authors = [{ name = "Fabrizio Musacchio"},
{ name = "Fabrizio Musacchio", email = "fabrizio.musacchio@posteo.de" }
]
maintainers = [
{ name = "Fabrizio Musacchio", email = "fabrizio.musacchio@posteo.de" }
]
license = "GPL-3.0-or-later"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"numpy",
"tifffile",
"imagecodecs",
"czifile",
"zarr",
"dask[array]",
"numcodecs",
"tqdm",
"pyyaml",
"napari[all]",
"ipykernel"
]
[project.urls]
Homepage = "https://github.com/FabrizioMusacchio/omio"
Documentation = "https://github.com/FabrizioMusacchio/omio#readme"
Source = "https://github.com/FabrizioMusacchio/omio"
Tracker = "https://github.com/FabrizioMusacchio/omio/issues"
[project.optional-dependencies]
dev = [
"pytest",
"pytest-cov",
"sphinx",
"sphinx-autodoc-typehints",
"sphinx-rtd-theme",
"myst-parser",
"sphinx-copybutton"
]
[tool.flit.module]
name = "omio"
[tool.pytest.ini_options]
addopts = "--cov=omio --cov-branch --cov-report=term --cov-report=xml"
testpaths = ["tests"]
filterwarnings = [
"ignore:Pickle, copy, and deepcopy support will be removed from itertools in Python 3.14\\.:DeprecationWarning",
]