-
Notifications
You must be signed in to change notification settings - Fork 25
/
pyproject.toml
68 lines (61 loc) · 1.94 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
[project]
name = "h5json"
description = "HDF5/JSON Tools"
readme = "README.md"
license = { file = "COPYING" }
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
authors = [{ "name" = "The HDF Group", "email" = "[email protected]" }]
keywords = ["json", "hdf5", "multidimensional array", "data", "datacube"]
requires-python = ">=3.8"
dependencies = [
"h5py >=3.10",
"numpy >= 2.0; python_version>='3.9'",
"jsonschema >=4.4.0",
"tomli; python_version<'3.11'",
"numpy >=1.20,<2.0.0; python_version=='3.8'",
]
dynamic = ["version"]
[project.urls]
Homepage = "https://hdf5-json.readthedocs.io"
Documentation = "https://hdf5-json.readthedocs.io"
Source = "https://github.com/HDFGroup/hdf5-json"
"Bug Reports" = "https://github.com/HDFGroup/hdf5-json/issues"
Social = "https://twitter.com/hdf5"
Discussion = "https://forum.hdfgroup.org"
[project.scripts]
h5tojson = "h5json.h5tojson.h5tojson:main"
jsontoh5 = "h5json.jsontoh5.jsontoh5:main"
h5jvalidate = "h5json.validator.validator:main"
[project.optional-dependencies]
dev = ["check-manifest"]
test = ["coverage"]
[build-system]
requires = ["setuptools", "setuptools_scm", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
package-dir = { "" = "src" }
packages = [
"h5json",
"h5json.h5tojson",
"h5json.jsontoh5",
"h5json.schema",
"h5json.validator",
]
package-data = { "h5json.schema" = ["*.schema.json"] }
platforms = ["any"]
zip-safe = false
[tool.setuptools_scm]
version_file = "src/h5json/_version.py"
# [tool.distutils.bdist_wheel]
# universal = true