forked from linux-test-project/kirk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
87 lines (76 loc) · 2.11 KB
/
pyproject.toml
File metadata and controls
87 lines (76 loc) · 2.11 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "kirk"
dynamic = ["version"]
description = "Linux Test Project tests executor"
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">=3.6"
keywords = ["testing", "linux", "development", "ltp", "linux-test-project"]
authors = [
{name = "Linux Test Project", email = "ltp@lists.linux.it" }
]
maintainers = [
{name = "Andrea Cervesato", email = "andrea.cervesato@suse.com"}
]
classifiers = [
"Natural Language :: English",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Software Development :: Testing",
]
[project.urls]
"Homepage" = "https://github.com/linux-test-project/kirk"
"Bug Reports" = "https://github.com/linux-test-project/kirk/issues"
[tool.setuptools.dynamic]
version = {attr = "libkirk.__version__"}
[tool.setuptools.packages.find]
include = ["libkirk"]
exclude = ["libkirk.tests"]
[project.scripts]
kirk = "libkirk.main:run"
[project.optional-dependencies]
ssh = ["asyncssh <= 2.17.0"]
ltx = ["msgpack <= 1.1.0"]
[tool.setuptools]
include-package-data = true
[tool.pytest.ini_options]
asyncio_mode = "auto"
addopts = "-v"
testpaths = ["libkirk/tests"]
filterwarnings = [
"ignore::DeprecationWarning",
"ignore::pytest.PytestCollectionWarning",
]
markers = [
"ssh",
"qemu",
"ltx",
]
[tool.pyrefly]
project-includes = ["**/*"]
project-excludes = ["**/*venv/**/*"]
[tool.ruff]
line-length=88
exclude = [
"doc/",
"utils/",
"libkirk/tests",
]
[tool.ruff.lint]
select = [
"ANN0",
"ANN2",
]