-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
79 lines (68 loc) · 2.16 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
68
69
70
71
72
73
74
75
76
77
78
79
[tool.poetry]
name = "voron_toolkit"
version = "0"
description = "A repository & docker container containing all necessary tools to accomplish CI tasks and provide useful CLI tools"
authors = ["Florian Heilmann <[email protected]>"]
license = "GPLv3"
readme = "README.md"
packages = [{include = "voron_toolkit"}]
[tool.poetry.dependencies]
python = ">=3.11,<4.0"
admesh = "^0.98.9"
configargparse = "^1.7"
githubkit = "^0.10.7"
gitpython = "^3.1.40"
imagekitio = "^3.2.0"
jsonschema = "^4.20.0"
loguru = "^0.7.2"
pyyaml = "^6.0.1"
requests = "^2.31.0"
tweaker3 = {git = "https://github.com/ChristophSchranz/Tweaker-3.git"}
markdown-it-py = "^3.0.0"
[tool.poetry.group.dev.dependencies]
mypy = "^1.7.0"
ruff = "^0.1.5"
types-pyyaml = "^6.0.12.12"
types-requests = "<2.31.0.7"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
line-length = 160
indent-width = 4
# Assume Python 3.11
target-version = "py311"
[tool.ruff.lint]
select = ["ALL" ]
ignore = [
"D", # no docs
"ISC001", "COM812", # Might cause issues with formatter
"PLE1205", # ruff gets confused about loguru
"TRY300", # competes with RET505
]
fixable = ["ALL"]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
skip-magic-trailing-comma = false
line-ending = "lf"
[[tool.mypy.overrides]]
module = [
"admesh.*",
"configargparse.*",
"imagekitio.*",
"jsonschema.*",
"tweaker3.*",
]
ignore_missing_imports = true
[tool.poetry.scripts]
check-mod-structure = "voron_toolkit.tools.mod_structure_checker:main"
check-stl-corruption = "voron_toolkit.tools.stl_corruption_checker:main"
check-stl-rotation = "voron_toolkit.tools.stl_rotation_checker:main"
check-files = "voron_toolkit.tools.file_checker:main"
generate-readme = "voron_toolkit.tools.readme_generator:main"
prepare-sparse-checkout = "voron_toolkit.voronuser_utils.sparse_checkout_helper:main"
set-pr-comment-labels = "voron_toolkit.voronuser_utils.pr_helper:main"
upload-images = "voron_toolkit.utils.imagekit_uploader:main"
sanitize-file-list = "voron_toolkit.utils.file_helper:FileHelper.sanitize_file_list"
check-markdown-files = "voron_toolkit.tools.markdown_link_checker:main"