-
Notifications
You must be signed in to change notification settings - Fork 54
/
pyproject.toml
64 lines (54 loc) · 1.44 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
[build-system]
requires = [
"setuptools>=64",
"setuptools-scm>=8.0",
]
build-backend = "setuptools.build_meta"
[tools.setuptools.dynamic]
version = {attr = "ome_zarr.__version__"}
[project]
name = "ome-zarr"
readme = "README.rst"
dynamic = ["version"]
description="Implementation of images in Zarr files."
requires-python = ">3.10"
dependencies = [
"numpy",
"dask",
"distributed",
"zarr>=2.8.1,<3",
"fsspec[s3]>=0.8,!=2021.07.0",
# See https://github.com/fsspec/filesystem_spec/issues/819
"aiohttp<4",
"requests",
"scikit-image",
"toolz",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"License :: OSI Approved :: BSD License",
]
authors = [
{name = "The Open Microscopy Team"},
]
[project.entry-points."console_scripts"]
ome_zarr = "ome_zarr.cli:main"
[project.optional-dependencies]
tests = [
"pytest",
]
[project.urls]
Documentation = "https://ome-zarr.readthedocs.io"
Repository = "https://github.com/ome/ome-zarr-py"
Changelog = "https://github.com/ome/ome-zarr-py/blob/master/CHANGELOG.md"
[tool.setuptools]
packages = ["ome_zarr"]
py-modules = ["ome_zarr"]
[tool.setuptools_scm]
version_file = "ome_zarr/_version.py"