-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
54 lines (47 loc) · 1.15 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
# SPDX-FileCopyrightText: 2023 SUSE LLC
#
# SPDX-License-Identifier: Apache-2.0
[project]
name = "uyuni-health-check"
description = "Show Uyuni server health metrics and logs"
readme = "README.md"
requires-python = ">=3.6"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
dependencies = [
"Click",
"rich",
"requests",
"Jinja2",
]
maintainers = [
{name = "Pablo Suárez Hernández", email = "[email protected]"},
]
dynamic = ["version"]
[project.urls]
homepage = "https://github.com/meaksh/uyuni-health-check"
tracker = "https://github.com/meaksh/uyuni-health-check/issues"
[project.scripts]
uyuni-health-check = "uyuni_health_check.main:main"
[tool.isort]
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
line_length = 88
ensure_newline_before_comments=true
[tool.flake8]
ignore = "E203, E266, E501, W503, F403, F401, W605"
max-line-length = 88
max-complexity = 18
[tool.setuptools]
package-dir = {"" = "src"}
[build-system]
requires = [
"setuptools>=42",
"setuptools_scm[toml]",
"wheel",
]
build-backend = "setuptools.build_meta"