-
Notifications
You must be signed in to change notification settings - Fork 81
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (37 loc) · 900 Bytes
/
pyproject.toml
File metadata and controls
42 lines (37 loc) · 900 Bytes
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
[project]
name = "virtme-ng"
dynamic = ["version", "license", "authors", "dependencies", "readme", "description", "classifiers", "scripts"]
requires-python = ">=3.10"
[project.optional-dependencies]
mcp = ["mcp>=0.9.0", "anyio>=4.0.0"]
[build-system]
requires = [
"argparse-manpage[setuptools]",
"setuptools",
# Runtime dependencies, needed to generate manpages.
"argcomplete",
"requests",
]
[tool.build_manpages]
manpages = [
"""\
man/vng.1\
:pyfile=virtme_ng/run.py\
:function=make_parser\
:author=virtme-ng is written by Andrea Righi <arighi@nvidia.com>\
:author=Based on virtme by Andy Lutomirski <luto@kernel.org>\
:manual_title=virtme-ng\
:description=Quickly run kernels inside a virtualized snapshot of your live system\
""",
]
[tool.ruff.lint]
select = [
# Pyflakes
"F",
# pyupgrade
"UP",
# flake8-bugbear
"B",
# isort
"I",
]