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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
[build-system]
requires = ["setuptools>=62.3"]
build-backend = "setuptools.build_meta"
[project]
name = "lcitool"
version = "0.1"
description = "libvirt CI guest management tool"
readme = "README.rst"
keywords = ["libvirt ci"]
requires-python = ">=3.8"
authors = [
{ name = "libvirt team", email = "libvir-list@redhat.com" }
]
classifiers = [
"License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3 :: Only",
]
dependencies = [
"PyYAML",
"requests",
]
[project.urls]
repository = "https://gitlab.com/libvirt/libvirt-ci.git"
[project.scripts]
lcitool = "lcitool.__main__:main"
[project.optional-dependencies]
vm_support = [
"ansible",
"ansible-runner >= 2.1.1",
"libvirt-python",
]
[tool.setuptools]
include-package-data = true
packages = [
"lcitool",
"lcitool.install",
"lcitool.containers",
]
[tool.setuptools.package-data]
"lcitool" = [
"ansible/**",
"cross/**",
"etc/**",
"facts/**",
]
"lcitool.install" = ["configs/**"]
|