-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
84 lines (71 loc) · 1.26 KB
/
pyproject.toml
File metadata and controls
84 lines (71 loc) · 1.26 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
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools >= 61.0",
]
[project]
dependencies = []
description = "Python code for running registered functions form command line."
name = "labtest"
readme = "README.md"
requires-python = ">=3.9"
version = "0.1.0"
[project.license]
file = "LICENSE"
[project.optional-dependencies]
dev = [
"black",
"coverage",
"flake8-bugbear",
"flake8-class-attributes-order",
"flake8-comprehensions",
"flake8-pytest-style",
"flake8-use-fstring",
"isort",
"isort[colors]",
"mypy",
"pylint",
"pyprojectsort",
"pytest",
"pytest-clarity",
"ruff",
]
[project.scripts]
labtest = "labtest.labtest:main"
[tool.black]
skip_magic_trailing_comma = true
[tool.coverage.report]
exclude_also = [
"@overload",
"if TYPE_CHECKING:",
]
[tool.pylint.format]
max-line-length = "88"
[tool.pylint.messages_control]
disable = "C0330, C0326"
[tool.ruff]
src = [
"src",
"tests",
]
[tool.ruff.lint]
ignore = [
"COM812",
"D104",
"ISC001",
"RET505",
]
select = [
"ALL",
]
[tool.ruff.lint.pydocstyle]
convention = "google"
[tool.setuptools.package-data]
labtest = [
"py.typed",
]
[tool.setuptools.packages.find]
namespaces = false
where = [
"src",
]