-
Notifications
You must be signed in to change notification settings - Fork 97
/
pyproject.toml
83 lines (78 loc) · 2.4 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
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
# SPDX-License-Identifier: LGPL-2.1-or-later
#
# Copyright (C) 2024 Collabora Limited
# Author: Jeny Sadadia <[email protected]>
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "kernelci"
version = "1.1"
description = "KernelCI core functions"
readme = "README.md"
requires-python = ">=3.9"
license = {text = "LGPL-2.1-or-later"}
dependencies = [
"azure-storage-blob==12.23.1",
"azure-storage-file-share==12.13.0",
"bson==0.5.10",
"click==8.1.3",
"cloudevents==1.9.0",
"docker==7.1.0",
"jinja2==3.1.4",
"kubernetes==26.1.0",
"paramiko==3.4.0",
"pydantic==2.9.2",
"pyelftools==0.29",
"pytest==7.4.0",
"pyyaml==6.0",
"requests==2.32.2",
"scp==0.14.5",
"toml==0.10.2",
]
authors = [
{name = "KernelCI", email = "[email protected]"}
]
maintainers = [
{name = "Arisu Tachibana" , email = "[email protected]"},
{name = "Denys Fedoryshchenko", email = "[email protected]"},
{name = "Jeny Sadadia", email = "[email protected]"}
]
classifiers = [
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)',
'Operating System :: OS Independent',
'Operating System :: POSIX :: Linux',
'Programming Language :: C',
'Programming Language :: Python',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Topic :: Software Development :: Build Tools',
'Topic :: Software Development :: Testing',
]
[project.optional-dependencies]
dev = [
"mypy==1.4.1",
"pycodestyle==2.10.0",
"pylint==2.17.2",
"pytest-mock==3.11.1",
"types-PyYAML==6.0.12.10",
"types-requests==2.31.0.1",
"types-urllib3==1.26.25.13",
]
[project.urls]
Homepage = "https://kernelci.org"
Documentation = "https://kernelci.org/docs"
Repository = "https://github.com/kernelci/kernelci-core"
[project.scripts]
kci = "kernelci.scripts.kci:main"
kci_bisect = "kernelci.scripts.kci_bisect:main"
kci_build = "kernelci.scripts.kci_build:main"
kci_data = "kernelci.scripts.kci_data:main"
kci_rootfs = "kernelci.scripts.kci_rootfs:main"
kci_test = "kernelci.scripts.kci_test:main"
kci-bisect-lava-v2-callback = "kernelci.scripts.kci_bisect_lava_v2_callback:main"
kci-bisect-push-results = "kernelci.scripts.kci_bisect_push_results:main"