-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
79 lines (63 loc) · 1.54 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.version]
path = "ebcl_vscode/__init__.py"
[tool.hatch.build.targets.wheel]
packages = ["ebcl_vscode"]
[project]
name = "ebcl_vscode"
dynamic = ["version"]
authors = [
{ name="Elektrobit GmbH", email="info@elektrobit.com" },
]
description = "EBcL vscode helpers."
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3",
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: POSIX :: Linux",
"Topic :: Software Development :: Embedded Systems",
]
requires-python = ">=3.10"
dependencies = [
"pyyaml",
"ebcl"
]
[project.urls]
Homepage = "https://github.com/Elektrobit/ebcl_vscode_tools"
[project.scripts]
generate_build_tasks = "ebcl_vscode.tools.tasks.tasks:main"
[tool.pylint.format]
max-line-length = 120
[tool.pylint.'MESSAGES CONTROL']
disable = [
"E0402",
"W0212",
"W0718"
]
[tool.pytest.ini_options]
minversion = "6.2.5"
addopts = "--cov --cov-context=test --cov-report html -rP"
testpaths = [ "tests" ]
[tool.coverage.paths]
source = [
"ebcl_vscode",
"*/site-packages/ebcl_vscode"
]
[tool.coverage.run]
branch = true
source = ["ebcl_vscode"]
[tool.coverage.report]
include_namespace_packages = true
exclude_also = [
"@(abc\\.)?abstractmethod",
"def __repr__"
]
include = ["ebcl_vscode/*"]
[tool.coverage.html]
show_contexts = true
[tool.mypy]
mypy_path = "$MYPY_CONFIG_FILE_DIR/ebcl_vscode"
explicit_package_bases = true