-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
71 lines (65 loc) · 1.32 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
[build-system]
requires = [
"setuptools >= 40.9.0",
]
build-backend = "setuptools.build_meta"
[project]
name = "zappend"
dynamic = ["version"]
authors = [
{name = "Norman Fomferra", email = "[email protected]"}
]
description = """\
Tool for robustly creating and updating Zarr datacubes from smaller slices\
"""
keywords = [
"analysis ready data", "data science", "datacube", "xarray", "zarr"
]
readme = {file = "README.md", content-type = "text/markdown"}
license = {text = "MIT"}
requires-python = ">=3.10"
dependencies = [
"click",
"dask",
"fsspec",
"jsonschema",
"numcodecs",
"numpy",
"pyyaml",
"xarray",
"zarr"
]
[tool.setuptools.dynamic]
version = {attr = "zappend.__version__"}
[tool.setuptools.packages.find]
exclude = [
"test*",
"doc*",
"site*",
"htmlcov*"
]
[project.scripts]
zappend = "zappend.cli:zappend"
[project.optional-dependencies]
dev = [
"pytest",
"pytest-cov",
"black",
"flake8",
"flake8-bugbear",
"h5netcdf",
"s3fs",
"scipy",
"pyproj"
]
doc = [
"mkdocs",
"mkdocs-material",
"mkdocstrings",
"mkdocstrings-python"
]
[project.urls]
Documentation = "https://bcdev.github.io/zappend/"
Issues = "https://github.com/bcdev/zappend/issues"
Changelog = "https://github.com/bcdev/zappend/blob/main/CHANGES.md"
Repository = "https://github.com/bcdev/zappend"