File: pyproject.toml

package info (click to toggle)
libnvme 1.16.1-3
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 8,020 kB
  • sloc: ansic: 35,812; perl: 1,834; sh: 475; python: 194; cpp: 64; makefile: 55
file content (33 lines) | stat: -rw-r--r-- 924 bytes parent folder | download | duplicates (2)
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
# SPDX-License-Identifier: LGPL-2.1-or-later
[build-system]
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"]

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

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"