-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
82 lines (71 loc) · 1.8 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
[build-system]
requires = ["setuptools>=65.6.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "patch1337"
description = "Patches files using .1337 patch files"
readme = "README.md"
license = {file = "LICENSE"}
keywords = ["1337", "patch", "nvidia",]
authors = [{name = "OMEGA_RAZER"}]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
requires-python = ">=3.9"
dependencies = [
"click>=8.1.3",
"loguru>=0.7.0",
]
dynamic = ["version"]
[tool.setuptools]
dynamic = {"version" = {attr = 'patch1337.patch1337.__version__'}}
packages = ["patch1337",]
[project.optional-dependencies]
dev = [
"black>=23.3.0",
"pre-commit>=3.3.3",
"refurb>=1.16.0",
"ruff>=0.0.272",
]
[project.scripts]
patch1337 = "patch1337.patch1337:main"
[project.urls]
"Homepage" = "https://omegarazer.github.io/patch1337"
"Source" = "https://github.com/OMEGARAZER/patch1337"
"Bug Reports" = "https://github.com/OMEGARAZER/patch1337/issues"
[tool.black]
preview = true
line-length = 120
[tool.flake8]
max-line-length = 120
show-source = true
statistics = true
[tool.isort]
profile = "black"
py_version = 39
multi_line_output = 3
line_length = 120
indent = 4
[tool.mypy]
python_version = "3.9"
show_column_numbers = true
show_error_context = true
[tool.refurb]
python_version = "3.9"
[tool.ruff]
exclude = []
flake8-annotations = {"suppress-dummy-args" = true}
mccabe = {max-complexity = 15}
ignore = ["D203", "D212", "INP", "PLE1205"]
line-length = 120
select = ["ALL"]
show-fixes = true
show-source = true
target-version = "py39"