forked from DistributedProofreaders/guiguts-py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
67 lines (59 loc) · 1.52 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
[tool.poetry]
name = "guiguts"
version = "2.0.0-alpha.10"
description = "Guiguts version 2, Python/tkinter version"
authors = ["Nigel <windymilla@users.noreply.github.com>"]
readme = "README.md"
packages = [{include = "guiguts", from = "src"}]
[tool.poetry.dependencies]
python = "^3.11"
Pillow = "^10.1"
pywin32 = {version = "^306", platform = "win32"}
roman = "^4.1"
regex = "^2024.5"
levenshtein = "^0.25.1"
[tool.poetry.group.dev.dependencies]
black = "^24.4"
flake8 = "^7.0"
Sphinx = "^7.2"
pytest = "^8.3"
mypy = "^1.8"
pylint = "^3.0.3"
types-Pillow = "^10.1"
types-regex = "^2024.5"
build = "^1.0.3"
[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-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