|
1 | 1 | # SPDX-License-Identifier: LGPL-2.1-or-later |
2 | 2 | [build-system] |
3 | | -requires = ["mesonpep517", "wheel", "meson", "ninja"] # PEP 508 specifications. |
4 | | -build-backend = "mesonpep517.buildapi" |
| 3 | +build-backend = 'mesonpy' |
| 4 | +requires = ['meson-python'] |
| 5 | + |
| 6 | +[project] |
| 7 | +name = "libnvme" |
| 8 | +dynamic = ["version"] |
| 9 | +description = "python bindings for libnvme" |
| 10 | +readme = "README.md" |
| 11 | +requires-python = ">=3.6" |
| 12 | +license = { text = "LGPL-2.1-or-later" } |
| 13 | + |
| 14 | +authors = [ |
| 15 | + { name = "Hannes Reinecke", email = "hare@suse.de" } |
| 16 | +] |
| 17 | + |
| 18 | +keywords = ["nvme", "storage", "bindings"] |
5 | 19 |
|
6 | | -[tool.mesonpep517.metadata] |
7 | | -author="Hannes Reinecke" |
8 | | -author-email="hare@suse.de" |
9 | 20 | classifiers = [ |
10 | 21 | "Intended Audience :: Developers", |
11 | 22 | "Development Status :: 5 - Production/Stable", |
12 | 23 | "License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)", |
13 | 24 | "Programming Language :: Python :: 3", |
14 | 25 | "Topic :: Software Development :: Libraries :: Python Modules", |
15 | 26 | ] |
16 | | -description="Provides library functions for accessing and managing nvme devices on a Linux system." |
17 | | -description-file="README.md" |
18 | | -home-page = "https://github.com/linux-nvme/libnvme" |
19 | | -license="LGPL-2.1-or-later" |
20 | | -requires-python=">=3.6" |
21 | | -summary="python bindings for libnvme" |
22 | 27 |
|
| 28 | +dependencies = [] |
| 29 | + |
| 30 | +[project.urls] |
| 31 | +"Homepage" = "https://github.com/linux-nvme/libnvme" |
| 32 | +"Source" = "https://github.com/linux-nvme/libnvme" |
| 33 | +"Bug Tracker" = "https://github.com/linux-nvme/libnvme/issues" |
0 commit comments