-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (33 loc) · 861 Bytes
/
pyproject.toml
File metadata and controls
39 lines (33 loc) · 861 Bytes
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
[project]
name = "free2ki"
version = "1.1.2"
requires-python = "==3.11.*"
dependencies = ["numpy", "pyside6"]
[dependency-groups]
dev = ["freecad-stubs", "pillow", "ruff"]
[tool.pyright]
exclude = ["**/blender", ".venv"]
typeCheckingMode = "strict"
reportIgnoreCommentWithoutRule = "warning"
reportImplicitRelativeImport = "warning"
reportMissingModuleSource = false
reportUnnecessaryTypeIgnoreComment = "warning"
reportUnknownArgumentType = false
reportUnknownMemberType = false
reportUnknownVariableType = false
[tool.ruff]
line-length = 100
[tool.ruff.lint]
ignore = ["F403", "F405"]
[tool.ruff.lint.isort]
combine-as-imports = true
section-order = [
"future",
"standard-library",
"third-party",
"freecad",
"first-party",
"local-folder",
]
[tool.ruff.lint.isort.sections]
freecad = ["FreeCAD", "FreeCADGui", "MeshPart", "Part"]