-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
49 lines (43 loc) · 1.05 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
[tool.poetry]
name = "xitomatl"
version = "0.1.0"
description = "Simple pomodoro timer app residing in tray"
license = "GPL-2.0-or-later"
authors = ["Lukas Holecek <[email protected]>"]
[tool.poetry.dependencies]
python = ">=3.10,<3.14"
PySide6-Essentials = "^6.7.3"
[tool.poetry.dev-dependencies]
Nuitka = "^2.5.4"
zstandard = "^0.23.0"
imageio = [
{version = "^2.22.4", markers = "platform_system != 'Linux'"}
]
pillow = "^11.0.0"
pylint = "^3.3.1"
pytest = "^8.3.4"
pytest-cov = "^6.0.0"
[tool.poetry.scripts]
xitomatl = "xitomatl.__main__:main"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pylint.main]
ignore-paths = [
"^tests/",
]
jobs=0
[tool.pylint."messages control"]
disable = [
"broad-exception-caught",
"invalid-name",
"missing-class-docstring",
"missing-function-docstring",
"missing-module-docstring",
"no-name-in-module",
"redefined-outer-name",
"too-few-public-methods",
"too-many-instance-attributes",
"too-many-return-statements",
"wrong-import-position",
]