@@ -7,8 +7,18 @@ build-backend = "hatchling.build"
7
7
name = " zarr"
8
8
description = " An implementation of chunked, compressed, N-dimensional arrays for Python"
9
9
readme = { file = " README.md" , content-type = " text/markdown" }
10
+ authors = [
11
+ {
name =
" Alistair Miles" ,
email =
" [email protected] " },
12
+ ]
10
13
maintainers = [
11
- {
name =
" Alistair Miles" ,
email =
" [email protected] " }
14
+ {
name =
" Davis Bennett" ,
email =
" [email protected] " },
15
+ { name = " jakirkham" },
16
+ {
name =
" Josh Moore" ,
email =
" [email protected] " },
17
+ {
name =
" Joe Hamman" ,
email =
" [email protected] " },
18
+ {
name =
" Juan Nunez-Iglesias" ,
email =
" [email protected] " },
19
+ {
name =
" Martin Durant" ,
email =
" [email protected] " },
20
+ { name = " Norman Rzepka" },
21
+ { name = " Ryan Abernathey" }
12
22
]
13
23
requires-python = " >=3.10"
14
24
dependencies = [
@@ -38,7 +48,8 @@ classifiers = [
38
48
' Programming Language :: Python :: 3.11' ,
39
49
' Programming Language :: Python :: 3.12' ,
40
50
]
41
- license = " MIT"
51
+ license = {text = " MIT License" }
52
+ keywords = [" Python" , " compressed" , " ndimensional-arrays" , " zarr" ]
42
53
43
54
[project .optional-dependencies ]
44
55
jupyter = [
@@ -131,6 +142,7 @@ serve = "sphinx-autobuild docs docs/_build --ignore 'docs/_autoapi/**/*' --host
131
142
132
143
[tool .ruff ]
133
144
line-length = 100
145
+ src = [" src" ]
134
146
force-exclude = true
135
147
extend-exclude = [
136
148
" .bzr" ,
@@ -207,14 +219,18 @@ disallow_untyped_calls = false
207
219
208
220
209
221
[tool .pytest .ini_options ]
222
+ minversion = " 7"
223
+ testpaths = [" tests" ]
224
+ log_cli_level = " INFO"
225
+ xfail_strict = true
210
226
asyncio_mode = " auto"
211
227
doctest_optionflags = [
212
228
" NORMALIZE_WHITESPACE" ,
213
229
" ELLIPSIS" ,
214
230
" IGNORE_EXCEPTION_DETAIL" ,
215
231
]
216
232
addopts = [
217
- " --durations=10" ,
233
+ " --durations=10" , " -ra " , " --strict-config " , " --strict-markers " ,
218
234
]
219
235
filterwarnings = [
220
236
" error:::zarr.*" ,
0 commit comments