-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (37 loc) · 881 Bytes
/
pyproject.toml
File metadata and controls
42 lines (37 loc) · 881 Bytes
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
[project]
name = "bia-zarr"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"aiohttp>=3.11.11",
"dask>=2025.1.0",
"fsspec>=2024.12.0",
"microfilm>=0.3.0",
"pillow>=11.1.0",
"pydantic>=2.10.6",
"requests>=2.32.3",
"rich>=13.9.4",
"tensorstore>=0.1.71",
"typer>=0.15.1",
"zarr>=3.0.2",
]
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[dependency-groups]
dev = ["pytest"]
[project.scripts]
bia-zarr = "bia_zarr.cli:app"
[tool.poetry]
name = "bia-zarr"
version = "0.1.0"
description = "BioImage Archive Zarr tools"
authors = ["Matthew Hartley <matthewh@ebi.ac.uk>"]
license = "MIT"
readme = "README.md"
packages = [{include = "bia_zarr"}]
[tool.setuptools.packages.find]
where = ["."]
include = ["bia_zarr*"]