-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
112 lines (98 loc) · 2.54 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
[build-system]
requires = ["setuptools>=45", "setuptools_scm[toml]>=6.2"]
[project]
name = "ChimeraX-OME-Zarr"
version = "0.5.4"
dynamic = ["classifiers", "requires-python"]
dependencies = [
"ChimeraX-Core>=1.7",
"ome_zarr",
"dask",
"zarr",
"fsspec",
"s3fs",
"smbprotocol",
]
authors = [
{name = "Utz H. Ermel", email = "[email protected]"},
]
description = "Open OME-Zarr files in ChimeraX."
readme = "README.md"
license = {file = "LICENSE"}
keywords = ["ome-zarr", "bioimaging", "ngff", "ome", "zarr", "multiscale"]
[project.urls]
Repository = "https://github.com/uermel/chimerax-ome-zarr.git"
Issues = "https://github.com/uermel/chimerax-ome-zarr/issues"
[project.optional-dependencies]
dev = [
"black",
"pre-commit",
"ruff",
]
[chimerax]
categories = ["Volume Data"]
module-name-override = "ome_zarr"
package = "chimerax.ome-zarr"
min-session-version="1"
max-session-version="1"
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License"
]
[chimerax.data-format."OME-Zarr"]
category = "Volume Data"
nicknames = ["ome-zarr", "omezarr"]
suffixes = [".zarr"]
reference-url="https://ngff.openmicroscopy.org/latest/"
synopsis="Next-generation file format (NGFF) specifications for storing bioimaging data in the cloud."
[[chimerax.data-format."OME-Zarr".open]]
want-path = true
check-path = false
is-default = true
type = "open"
[[chimerax.data-format."OME-Zarr".open]]
name = "ngff"
type = "fetch"
[chimerax.package-data]
"src/docs/user/" = ["*.html"]
"src/docs/user/commands/" = ["*.html"]
[tool.black]
line-length = 120
target_version = ['py311']
[tool.ruff]
select = [
"E", "W", # pycodestyle
"F", # pyflakes
"B", # bugbear
"I", # isort
"N", # pep8-naming
"ASYNC", # async
"COM", # commas
"C4", # comprehensions
"DTZ", # datetimez
"ISC", # implicit-str-concat
"G", # logging-format
"T20", # print
"SIM", # simplify
]
ignore = [
"N815", # Variable in class scope should not be mixedCase
"N802", # Function name should be lowercase
"N999", # Invalid module name
"E501", # line too long
"C408", # rewrite empty built-ins as literals
"T201", # print statements.
"DTZ007", # Datetime objects without timezones.
"DTZ005", # More datetimes without timezones.
]
line-length = 120
target-version = "py311"
[tool.ruff.isort]
known-first-party =["common"]
[tool.ruff.flake8-quotes]
docstring-quotes = "double"
[tool.mypy]
show_error_codes = true
ignore_missing_imports = true
warn_unreachable = true
strict = true