-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpyproject.toml
More file actions
74 lines (67 loc) · 2.13 KB
/
pyproject.toml
File metadata and controls
74 lines (67 loc) · 2.13 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "linstor-client"
dynamic = ["version"]
description = "DRBD distributed resource management utility"
readme = "README.md"
license = { "text" = "GPL-3.0-or-later" }
authors = [
{name = "Robert Altnoeder", email = "robert.altnoeder@linbit.com"},
{name = "Roland Kammerer", email = "roland.kammerer@linbit.com"},
{name = "Rene Peinthor", email = "rene.peinthor@linbit.com"},
{name = "Gabor Hernadi", email = "gabor.hernadi@linbit.com"}
]
maintainers = [
{name = "Rene Peinthor", email = "rene.peinthor@linbit.com"},
]
requires-python = ">=3.6"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: System Administrators",
"Operating System :: POSIX :: Linux",
"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",
"Topic :: System :: Systems Administration",
]
dependencies = [
"python-linstor>=1.28.0",
"argcomplete>=1.8.1",
]
[project.urls]
Homepage = "https://www.linbit.com"
Repository = "https://github.com/LINBIT/linstor-client.git"
Issues = "https://github.com/LINBIT/linstor-client/issues"
Changelog = "https://github.com/LINBIT/linstor-client/blob/master/CHANGELOG.md"
[project.scripts]
linstor = "linstor_client_main:main"
[tool.setuptools.dynamic]
version = {attr = "linstor_client.consts.VERSION"}
[tool.setuptools]
packages = ["linstor_client", "linstor_client.commands", "linstor_client.commands.utils"]
py-modules = ["linstor_client_main"]
[tool.flake8]
count = true
show-source = true
statistics = true
ignore = ["C901", "W503", "F541"]
max-complexity = 10
max-line-length = 120
extend-exclude = [
"dist/",
"test-reports/",
"venv/",
"build/",
"doc/",
"scripts/",
"debian/",
"linstor_client/consts_githash.py",
]
per-file-ignores = ["__init__.py:F401"]