-
Notifications
You must be signed in to change notification settings - Fork 69
/
pyproject.toml
106 lines (96 loc) · 2.84 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
[build-system]
build-backend = "hatchling.build"
requires = ["hatchling", "hatch-vcs"]
[project]
name = "targetcli"
description = "A command shell for managing the Linux LIO kernel target"
readme = "README.md"
license = "Apache-2.0"
requires-python = ">=3.9"
authors = [{email = "[email protected]", name = "Andy Grover"}]
maintainers = [{email = "[email protected]", name = "Maurizio Lombardi"}]
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"PyGObject",
"configshell-fb",
"rtslib-fb",
]
dynamic = ["version"]
[project.license-files]
paths = ["COPYING"]
[project.scripts]
targetcli = "targetcli.targetcli_shell:main"
targetclid = "targetcli.targetclid:main"
[project.urls]
Homepage = "http://github.com/open-iscsi/targetcli-fb"
[tool.hatch.build.targets.sdist]
include = [
".pre-commit-config.yaml",
"THANKS",
"src",
"systemd",
"targetcli*",
]
[tool.hatch.version]
source = "vcs"
[tool.hatch.envs.default]
dependencies = [
"ruff",
"pre-commit",
]
[tool.ruff]
line-length = 120
[tool.ruff.lint]
select = [
"F", # Pyflakes
"E", # pycodestyle error
"W", # pycodestyle warning
"I", # isort
"N", # pep8-naming
"UP", # pyupgrade
"YTT", # flake8-2020
"S", # flake8-bandit
"B", # flake8-bugbear
"A", # flake8-builtins
"COM", # flake8-commas
"C4", # flake8-comprehensions
"EXE", # flake8-executable
"FA", # flake8-future-annotations
"ISC", # flake8-implicit-str-concat
"ICN", # flake8-import-conventions
"PIE", # flake8-pie
"Q003", # flake8-quotes avoidable-escaped-quote
"Q004", # flake8-quotes unnecessary-escaped-quote
"RSE", # flake8-raise
"RET", # flake8-return
"SIM", # flake8-simplify
"TID", # flake8-tidy-imports
"INT", # flake8-gettext
"ARG", # flake8-unused-argument
#"PTH", # flake8-use-pathlib TODO
"PL", # Pylint
"FLY", # flynt
"PERF", # Perflint
"FURB", # refurb
"RUF", # Ruff
]
ignore = [
"E722", # TODO do not use bare 'except'
"S104", # Possible binding to all interfaces (0.0.0.0)
"RUF012", # TODO Mutable class attributes should be annotated with `typing.ClassVar`
"B904", # raise-without-from-inside-except
"ARG002", "PLR6301", # TODO Unused self, parameter in methods definitions
"PLR09", # Too many branches/statements/arguments
"PLW1514", # TODO `open` in text mode without explicit `encoding` argument
]
[tool.ruff.lint.flake8-quotes]
# Single quotes are currently prevalent in the codebase. Not being checked.
inline-quotes = "single"
[tool.ruff.lint.per-file-ignores]
# Preserving long lines for readability
"src/targetcli/ui_target.py" = ["E501"]