diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-10 19:22:29 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-10 19:22:29 +0000 |
commit | 068a45420f2c98887e220b45e946cc7074da550e (patch) | |
tree | c5b54e8b4b235232b057a9c534d9a16d2208463d /pyproject.toml | |
parent | Initial commit. (diff) | |
download | libnvme-068a45420f2c98887e220b45e946cc7074da550e.tar.xz libnvme-068a45420f2c98887e220b45e946cc7074da550e.zip |
Adding upstream version 1.8.upstream/1.8
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'pyproject.toml')
-rw-r--r-- | pyproject.toml | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..5416f3d --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,25 @@ +# SPDX-License-Identifier: LGPL-2.1-or-later +[build-system] +requires = ["mesonpep517", "wheel", "meson==0.61.2", "ninja"] # PEP 508 specifications. +build-backend = "mesonpep517.buildapi" + +[tool.mesonpep517.metadata] +author="Hannes Reinecke" +author-email="hare@suse.de" +classifiers = [ + "Intended Audience :: Developers", + "Development Status :: 5 - Production/Stable", + "License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.6", + "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9", + "Topic :: Software Development :: Libraries :: Python Modules", +] +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" + |