-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpyproject.toml
More file actions
65 lines (59 loc) · 1.48 KB
/
Copy pathpyproject.toml
File metadata and controls
65 lines (59 loc) · 1.48 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "sdnq"
version = "0.2.5"
authors = [{ name="Disty0", email="disty@disty.xyz" }]
description = "SD.Next Quantization Engine"
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
license = "GPL-3.0-only"
license-files = ["LICENSE"]
dependencies = ["torch", "diffusers", "transformers", "accelerate"]
[project.urls]
Homepage = "https://github.com/Disty0/sdnq"
Issues = "https://github.com/Disty0/sdnq/issues"
[tool.ruff.lint]
ignore = [
"I001",
"RUF022",
"FURB105",
"PLR2044",
"BLE001",
"S110",
]
[tool.pylint]
messages_control.disable=[
"import-error",
"invalid-name",
"cyclic-import",
"line-too-long",
"duplicate-code",
"no-else-return",
"protected-access",
"redefined-builtin",
"chained-comparison",
"broad-exception-caught",
"import-outside-toplevel",
"relative-beyond-top-level",
"logging-fstring-interpolation",
"missing-function-docstring",
"missing-module-docstring",
"missing-class-docstring",
"too-many-lines",
"too-many-locals",
"too-many-branches",
"too-many-arguments",
"too-many-statements",
"too-many-nested-blocks",
"too-many-return-statements",
"too-many-boolean-expressions",
"too-many-instance-attributes",
"too-many-positional-arguments",
"too-few-public-methods",
]