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
|
[build-system]
requires = [
"setuptools>=42",
"wheel",
"setuptools_scm[toml]>=7.0",
]
build-backend = "setuptools.build_meta"
[project]
name = "h5netcdf"
description = "netCDF4 via h5py"
requires-python = ">=3.9"
license = {file = "LICENSE"}
authors = [
{ name = "Stephan Hoyer", email = "shoyer@gmail.com" },
{ name = "Kai Mühlbauer", email = "kmuehlbauer@wradlib.org" },
]
maintainers = [
{ name = "h5netcdf developers", email = "devteam@h5netcdf.org" }
]
classifiers=[
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering",
]
dependencies = ["h5py", "packaging"]
dynamic = ["version", "readme"]
[project.urls]
homepage = "https://h5netcdf.org"
documentation = "https://h5netcdf.org"
repository = "https://github.com/h5netcdf/h5netcdf"
changelog = "https://github.com/h5netcdf/h5netcdf/blob/main/CHANGELOG.rst"
[project.optional-dependencies]
test = ["netCDF4", "pytest"]
[tool.setuptools.dynamic]
readme = { file = ["README.rst"]}
[tool.setuptools]
packages = ["h5netcdf", "h5netcdf.tests"]
[tool.setuptools_scm]
write_to = "h5netcdf/_version.py"
version_scheme = "release-branch-semver"
fallback_version = "999"
[tool.black]
target-version = ["py39"]
line-length = 88
[tool.ruff]
target-version = "py39"
builtins = ["ellipsis"]
exclude = [
".eggs",
"doc",
]
# E402: module level import not at top of file
# E501: line too long - let black worry about that
# E731: do not assign a lambda expression, use a def
lint.ignore = [
"E402",
"E501",
"E731",
]
lint.select = [
# Pyflakes
"F",
# Pycodestyle
"E",
"W",
# isort
"I",
# Pyupgrade
"UP",
]
[tool.ruff.lint.isort]
known-first-party = ["h5netcdf"]
|