-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
54 lines (47 loc) · 1.56 KB
/
pyproject.toml
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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "kirk"
dynamic = ["version"]
description = "All-in-one Linux Testing Framework"
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">=3.6"
keywords = ["testing", "linux", "development", "ltp", "linux-test-project"]
authors = [
{name = "Linux Test Project", email = "[email protected]" }
]
maintainers = [
{name = "Andrea Cervesato", email = "[email protected]"}
]
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",
"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