-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpyproject.toml
More file actions
83 lines (74 loc) · 1.9 KB
/
Copy pathpyproject.toml
File metadata and controls
83 lines (74 loc) · 1.9 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
[tool.poetry]
name = "guiguts"
version = "2.1.3"
description = "Guiguts version 2, Python/tkinter version"
authors = ["DP Guiguts Dev Team <windymilla@users.noreply.github.com>"]
readme = "README.md"
packages = [{include = "guiguts", from = "src"}]
[tool.poetry.dependencies]
python = "^3.11"
Pillow = "^12.3"
pywin32 = {version = ">=312,<313", platform = "win32"}
roman = "^5.2"
regex = "^2026.7.19"
levenshtein = "^0.27.3"
requests = "^2.34.2"
ttkthemes = "^3.3.0"
darkdetect = "^0.8.0"
rapidfuzz = "^3.14.5"
packaging = "^26.2"
lxml = "^6.1.1"
tinycss = "^0.4"
cssselect = "^1.5.0"
html5lib = "^1.1"
[tool.poetry.group.dev.dependencies]
black = "^26.5"
flake8 = "^7.3"
Sphinx = "^8.2"
pytest = "^9.1"
mypy = "^2.3"
pylint = "^4.0"
beautifulsoup4 = "^4.15"
types-regex = "^2026.7.19"
types-requests = "^2.33"
types-lxml = "^2026.2.16"
types-ttkthemes = "^3.3.0"
build = "^1.5"
[tool.poetry.scripts]
guiguts = "guiguts.application:main"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pylint."messages control"]
confidence = ["HIGH", "CONTROL_FLOW", "INFERENCE", "INFERENCE_FAILURE", "UNDEFINED"]
disable = [
"raw-checker-failed",
"bad-inline-option",
"locally-disabled",
"file-ignored",
"suppressed-message",
"useless-suppression",
"deprecated-pragma",
"use-symbolic-message-instead",
"line-too-long",
"logging-fstring-interpolation",
"logging-not-lazy",
"too-few-public-methods",
"too-many-ancestors",
"too-many-public-methods",
"too-many-statements",
"too-many-instance-attributes",
"too-many-locals",
"too-many-arguments",
"too-many-positional-arguments",
"too-many-return-statements",
"too-many-lines",
"too-many-branches",
"too-many-nested-blocks",
"global-statement"
]
enable = ["c-extension-no-member"]
[tool.pylint.SIMILARITIES]
min-similarity-lines = 0
[tool.pylint.'TYPECHECK']
extension-pkg-allow-list = ["unicodedataplus", "lxml.etree"]