-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
50 lines (41 loc) · 975 Bytes
/
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
[project]
name = "gridfinity_build123d"
version = "0.1.0"
description = "Build123d library for gridfinity objects"
dependencies = [
"build123d==0.7.0",
"bd_warehouse@git+https://github.com/gumyr/bd_warehouse@7e68dfecc03c7ab64cc9c41d8b1313f060137bb8",
]
requires-python = ">=3.8"
[build-system]
requires = ["setuptools >= 61.0.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]
[tool.black]
line-length = 100
[tool.coverage.run]
branch = true
omit = ["test_*"]
[too.ruff]
line-length = 100
[tool.ruff.lint]
select = ["ALL"]
ignore = ["ANN101", "PLR0913", "ANN204", "S603"]
[tool.ruff.lint.per-file-ignores]
"**/tests/*" = [
"D100",
"D101",
"D102",
"D107",
"N802",
"INP001",
"PT009",
"PT027",
]
"**/docs/*" = ["D100", "D101", "D102", "INP001"]
[tool.ruff.lint.pydocstyle]
convention = "google"
ignore-decorators = ['inherit_docstring']
[tool.ruff.lint.pycodestyle]
max-line-length = 101