-
Notifications
You must be signed in to change notification settings - Fork 90
/
pyproject.toml
87 lines (80 loc) · 2.27 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
[build-system]
build-backend = "hatchling.build"
requires = ["hatchling", "hatch-vcs"]
[project]
name = "rtslib"
description = "API for Linux kernel SCSI target (aka LIO)"
readme = "README.md"
license = "Apache-2.0"
requires-python = ">=3.9"
authors = [
{email = "[email protected]", name = "Andy Grover"},
{email = "[email protected]", name = "Jerome Martin"}
]
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",
"Operating System :: POSIX :: Linux",
]
dependencies = [
"pyudev ~= 0.18",
]
dynamic = ["version"]
[project.license-files]
paths = ["COPYING"]
[project.urls]
Homepage = "http://github.com/open-iscsi/rtslib-fb"
[tool.hatch.version]
source = "vcs"
[tool.hatch.envs.default]
dependencies = [
"ruff",
"pre-commit",
]
[tool.ruff]
line-length = 100
[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
"SIM", # flake8-simplify
"TID", # flake8-tidy-imports
"INT", # flake8-gettext
"ARG", # flake8-unused-argument
"PTH", # flake8-use-pathlib
"PL", # Pylint
"FLY", # flynt
"PERF", # Perflint
"FURB", # refurb
"RUF", # Ruff
]
ignore = [
"E722", # TODO do not use bare 'except'
"B904", # TODO raise-without-from-inside-except
"PERF203", # TODO `try`-`except` within a loop incurs performance overhead
"PLR09", # Too many branches/statements/arguments
]
[tool.ruff.lint.per-file-ignores]
# Magic value used in comparison
"scripts/targetctl" = ["PLR2004"]