-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
58 lines (48 loc) · 1.15 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
[project]
name = "inkscape-speleo"
version = "1.9"
description = "Inkscape extensions for cave surveying"
authors = [
{name = "Thomas Holder"},
]
requires-python = ">=3.7"
dynamic = ["dependencies"]
[project.urls]
repository = "https://github.com/speleo3/inkscape-speleo"
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
[tool.setuptools.packages.find]
where = ["extensions"]
[tool.yapf]
column_limit = 88
based_on_style = "pep8"
allow_split_before_dict_value = false
each_dict_entry_on_separate_line = false
[tool.autopep8]
ignore = [
"E501", # --max-line-length
"E731", # lambda
]
[tool.ruff.lint]
extend-select = ["W", "B", "Q003"]
ignore = [
"E401", # Multiple imports on one line
"E501", # Line too long
"E731", # lambda-assignment
"W191", # Indentation contains tabs
"W293", # Blank line contains whitespace
]
[tool.pytest.ini_options]
addopts = "--strict-markers"
pythonpath = ["extensions"]
testpaths = ["tests"]
[tool.coverage.run]
source = ["extensions"]
[tool.mypy]
files = [
"extensions",
"tests",
]
ignore_missing_imports = true
explicit_package_bases = true
# vi:sw=4