-
Notifications
You must be signed in to change notification settings - Fork 708
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (37 loc) · 1.13 KB
/
pyproject.toml
File metadata and controls
44 lines (37 loc) · 1.13 KB
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
34
35
36
37
38
39
40
41
42
43
44
# SPDX-License-Identifier: LGPL-2.1-or-later
[build-system]
build-backend = 'mesonpy'
requires = ['meson-python', 'meson', 'ninja', 'swig']
[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/nvme-cli"
"Source" = "https://github.com/linux-nvme/nvme-cli"
"Bug Tracker" = "https://github.com/linux-nvme/nvme-cli/issues"
[tool.meson-python.args]
setup = [
"-Dnvme=disabled",
"-Dlibnvme=enabled",
"-Dpython=enabled",
"-Dpypi=true",
"-Dtests=false",
"-Dnvme-tests=false",
"-Dexamples=false",
]