-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
114 lines (104 loc) · 2.25 KB
/
pyproject.toml
File metadata and controls
114 lines (104 loc) · 2.25 KB
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.sdist]
exclude = [
"/.github",
"/docs",
]
[project]
name = "obspec-utils"
dynamic = ["version"]
description = "Utilities for interacting with object storage, based on obspec"
readme = "README.md"
requires-python = ">=3.11"
license = "Apache-2.0"
keywords = []
authors = [
{ name = "Max Jones", email = "14077947+maxrjones@users.noreply.github.com" },
]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
dependencies = [
"obspec",
"obstore",
]
[project.urls]
Documentation = "https://obspec-utils.readthedocs.io"
Issues = "https://github.com/virtual-zarr/obspec-utils/issues"
Source = "https://github.com/virtual-zarr/obspec-utils"
[dependency-groups]
test = [
"pandas-stubs",
"coverage",
"pytest",
"pytest-asyncio",
"pytest-cov",
"pytest-accept",
"rich",
"mypy",
"pytest-xdist",
"minio",
"docker",
"s3fs",
]
xarray = [
"xarray",
"h5netcdf",
"h5py",
"cftime",
"scipy",
"rasterio",
"rioxarray",
]
dask = [
"dask",
]
fsspec = [
"s3fs",
"fsspec",
]
dev = [
"ipykernel>=6.29.5",
]
docs = [
"mkdocs-material[imaging]>=9.6.14",
"mkdocs>=1.6.1",
"mkdocstrings>=0.29.1",
"mkdocstrings-python>=1.16.10",
"markdown-exec[ansi]",
"ruff",
]
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch]
version.source = "vcs"
[tool.hatch.build]
hooks.vcs.version-file = "src/obspec_utils/_version.py"
[tool.coverage.run]
source_pkgs = ["obspec_utils"]
branch = true
parallel = true
omit = [
"src/obspec_utils/__about__.py",
]
[tool.coverage.paths]
obspec_utils = ["src/obspec_utils", "*/obspec-utils/src/obspec_utils"]
[tool.coverage.report]
exclude_lines = [
"no cov",
"if __name__ == .__main__.:",
"if TYPE_CHECKING:",
]
[tool.pytest.ini_options]
markers = [
"network: marks tests as requiring network access (run with --network)",
]