-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
53 lines (47 loc) · 943 Bytes
/
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
[build-system]
requires = [
"cmake>=3.12",
"ninja",
"pybind11[global]",
"setuptools>=42",
"wheel",
]
build-backend = "setuptools.build_meta"
[project]
name = "acquire-zarr"
version = "0.0.2"
description = "Python bindings for acquire-zarr"
authors = [
{name = "Alan Liddell", email = "[email protected]"}
]
readme = "README.md"
requires-python = ">=3.9"
[project.optional-dependencies]
testing = [
"black",
"dask",
"mypy",
"ome-zarr",
"pytest>=7",
"pytest-cov",
"python-dotenv",
"ruff",
"s3fs",
"tifffile",
"zarr",
"python-dotenv",
]
[tool.black]
target-version = ['py39', 'py310', 'py311', 'py312']
line-length = 79
[tool.isort]
profile = "black"
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra -q --color=yes"
log_cli = true # when true, messages are printed immediately
testpaths = [
"python/tests",
]
[tool.setuptools]
zip-safe = false