File: pyproject.toml

package info (click to toggle)
virtme-ng 1.40-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 616 kB
  • sloc: python: 5,185; sh: 518; makefile: 34
file content (42 lines) | stat: -rw-r--r-- 900 bytes parent folder | download
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",
]