Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 23 additions & 8 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,34 @@ requires = ["mesonpep517", "wheel", "meson", "ninja"] # PEP 508 specifications.
build-backend = "mesonpep517.buildapi"

[tool.mesonpep517.metadata]
author="Hannes Reinecke"
author-email="[email protected]"
summary="python bindings for libnvme"

[project]
name = "libnvme"
dynamic = ["version"]
description = "Provides library functions for accessing and managing nvme devices on a Linux system."
readme = "README.md"
requires-python = ">=3.6"
license = { text = "LGPL-2.1-or-later" }

authors = [
{ name = "Hannes Reinecke", email = "[email protected]" }
]

keywords = ["SPDK", "storage", "nvme", "performance", "bindings"]

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",
"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"