1
0
Fork 0

Merging upstream version 1.14.

Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
Daniel Baumann 2025-05-22 12:57:29 +02:00
parent 22fcbdb0c8
commit 35c8bfce7f
Signed by: daniel
GPG key ID: FBB4F0E80A80222F
1041 changed files with 6076 additions and 1170 deletions

View file

@ -1,11 +1,22 @@
# SPDX-License-Identifier: LGPL-2.1-or-later
[build-system]
requires = ["mesonpep517", "wheel", "meson", "ninja"] # PEP 508 specifications.
build-backend = "mesonpep517.buildapi"
build-backend = 'mesonpy'
requires = ['meson-python']
[project]
name = "libnvme"
dynamic = ["version"]
description = "python bindings for libnvme"
readme = "README.md"
requires-python = ">=3.6"
license = { text = "LGPL-2.1-or-later" }
authors = [
{ name = "Hannes Reinecke", email = "hare@suse.de" }
]
keywords = ["nvme", "storage", "bindings"]
[tool.mesonpep517.metadata]
author="Hannes Reinecke"
author-email="hare@suse.de"
classifiers = [
"Intended Audience :: Developers",
"Development Status :: 5 - Production/Stable",
@ -13,10 +24,10 @@ classifiers = [
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries :: Python Modules",
]
description="Provides library functions for accessing and managing nvme devices on a Linux system."
description-file="README.md"
home-page = "https://github.com/linux-nvme/libnvme"
license="LGPL-2.1-or-later"
requires-python=">=3.6"
summary="python bindings for libnvme"
dependencies = []
[project.urls]
"Homepage" = "https://github.com/linux-nvme/libnvme"
"Source" = "https://github.com/linux-nvme/libnvme"
"Bug Tracker" = "https://github.com/linux-nvme/libnvme/issues"