-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpyproject.toml
More file actions
66 lines (58 loc) · 1.74 KB
/
pyproject.toml
File metadata and controls
66 lines (58 loc) · 1.74 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
[build-system]
requires = ["pbr>=6.1.1"]
build-backend = "pbr.build"
[project]
name = "pwclient"
description = "The command-line client for the Patchwork patch tracking tool"
authors = [
{name = "Nate Case", email = "ncase@xes-inc.com"},
{name = "Stephen Finucane", email = "stephen@that.guru"}
]
maintainers = [
{name = "Stephen Finucane", email = "stephen@that.guru"}
]
readme = {file = "README.rst", content-type = "text/x-rst"}
license = "GPL-2.0"
dynamic = ["version", "dependencies"]
requires-python = ">=3.10"
keywords = ["patchwork", "api"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python",
"Operating System :: OS Independent",
]
[project.urls]
"Bug Tracker" = "https://github.com/getpatchwork/pwclient/issues"
"Source Code" = "https://github.com/getpatchwork/pwclient"
"Documentation" = "https://pwclient.readthedocs.io"
[project.scripts]
pwclient = "pwclient.shell:main"
[tool.setuptools]
packages = [
"pwclient"
]
[tool.ruff]
line-length = 79
[tool.ruff.format]
quote-style = "preserve"
docstring-code-format = true
[tool.ruff.lint]
select = ["E4", "E7", "E9", "F", "S", "U"]
ignore = [
# we only use asserts for type narrowing
"S101",
# this is client tool running on a user's own system: users can open
# whatever urls they want to
"S310",
# ditto for running executables via subprocess
"S603",
# we make extensive use of printf style formatting and rewriting is a chore
"UP031",
]
[tool.ruff.lint.per-file-ignores]
"tests/*" = ["S"]