-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
100 lines (91 loc) · 2.07 KB
/
pyproject.toml
File metadata and controls
100 lines (91 loc) · 2.07 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
[project]
name = "BlocksScreen"
dynamic = ['version']
description = "GUI for BLOCKS Printers running Klipper"
authors = [
{ name = "Hugo do Carmo Costa", email = "hugo.santos.costa@gmail.com" },
]
maintainers = [
{ name = "Guilherme Costa", email = "guilherme.costa@blockstec.com" },
{ name = "Roberto Martins ", email = "roberto.martins@blockstec.com" },
]
dependencies = [
'altgraph==0.17.4',
'certifi==2025.10.5',
'charset-normalizer==3.4.4',
'idna==3.11',
'numpy==2.3.4',
'pefile==2024.8.26',
'PyQt6==6.10.0',
'PyQt6-Qt6==6.10.0',
'PyQt6_sip==13.10.2',
'requests>=2.32.5',
'sdbus==0.14.1',
'sdbus-networkmanager==2.0.0',
'typing==3.7.4.3',
'websocket-client==1.9.0',
'qrcode==8.2',
]
requires-python = "==3.11.2"
readme = "README.md"
license = { text = "GNU Affero General Public License v3.0 or later" }
keywords = ["GUI", "klipper", "BlocksScreen", "BLOCKS"]
[project.optional-dependencies]
dev = ["ruff", "pylint", "pytest", "pytest-cov", "docstr_coverage"]
stage = ["bandit"]
full-dev = ["BlockScreen[dev,stage]"]
[project.urls]
Homepage = "https://blockstec.com"
Issues = "https://github.com/BlocksTechnology/BlocksScreen/issues"
[tool.ruff]
line-length = 88
indent-width = 4
exclude = [
".bzr",
".direnv",
".eggs",
".git",
".git-rewrite",
".hg",
".ipynb_checkpoints",
".mypy_cache",
".nox",
".pants.d",
".pyenv",
".pytest_cache",
".pytype",
".ruff_cache",
".svn",
".tox",
".venv",
".vscode",
"__pypackages__",
"_build",
"buck-out",
"build",
"dist",
"node_modules",
"site-packages",
"venv",
"BlocksScreen/lib/ui",
"extras",
"tests",
]
[tool.ruff.lint]
ignore = ["F403"]
[tool.ruff.format]
indent-style = "space"
line-ending = 'auto'
docstring-code-format = true
docstring-code-line-length = 94
[tool.pylint]
fail-under = 7
jobs = 16
ignore = ["tests", "scripts", "ui", "extras"]
ignore-paths = ["BlocksScreen/lib/ui"]
py-version = "3.11"
max-line-length = 88
[tool.pytest.ini_options]
addopts = "--cov=BlocksScreen --cov-report=html"
[tool.bandit]
exclude_dirs = ["tests", "BlocksScreen/lib/ui/resources/"]