-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
84 lines (72 loc) · 1.53 KB
/
Copy pathpyproject.toml
File metadata and controls
84 lines (72 loc) · 1.53 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
75
76
77
78
79
80
81
82
83
84
[build-system]
requires = ["setuptools>=61.2"]
build-backend = "setuptools.build_meta"
[project]
name = "delayed_rm"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
]
keywords = ["rm"]
license = {text = "GPLv3"}
description = "Ever wish you had a few minutes to undo an rm? Now you do!"
urls = {Homepage = "https://github.com/zwimer/delayed_rm"}
requires-python = ">= 3.12"
dynamic = ["version"]
[project.readme]
file = "README.md"
content-type = "text/markdown"
[project.scripts]
delayed_rm = "delayed_rm:cli"
[tool.setuptools]
license-files = ["LICENSE"]
include-package-data = false
[tool.setuptools.packages]
find = {namespaces = false}
[tool.setuptools.package-data]
delayed_rm = ["py.typed"]
[tool.setuptools.dynamic]
version = {attr = "delayed_rm.__version__"}
# Tools
[tool.black]
line-length = 120
target-version = ["py312", "py313", "py314"]
[tool.ruff]
line-length = 120
[tool.ruff.lint]
ignore=[
"D10", "D2", "D403", "D415",
"DTZ005",
"E731", "E741",
"I001",
"PLR0912", "PLR0913", "PLR0915", "PLR2004",
"S603",
]
extend-select = [
"ANN",
"ARG",
"ASYNC",
"C4",
"D",
"DTZ",
"PERF",
"PGH",
"PIE",
"PL",
"PTH",
"RET",
"S",
"SIM",
"TID"
]
[tool.ruff.lint.pydocstyle]
convention = "google"
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["F401", "F403"]
[tool.bandit]
skips = ["B404"]
[tool.vulture]
ignore_names = ["cli"]
paths = ["delayed_rm"]