-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
57 lines (45 loc) · 1.22 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
[build-system]
requires = ["setuptools>=61.2"]
build-backend = "setuptools.build_meta"
[project]
name = "delayed_rm"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"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.10"
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 = ["py310", "py311", "py312"]
[tool.ruff]
ignore=["E731","E741"]
line-length = 120
[tool.ruff.per-file-ignores]
"__init__.py" = ["F401", "F403"]
[tool.bandit]
skips = ["B404"]
[tool.vulture]
ignore_names = ["cli"]
paths = ["delayed_rm"]