-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
67 lines (59 loc) · 1.34 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
[build-system]
requires = ["setuptools", "wheel"]
[project]
name = "a2lparser"
requires-python = ">=3.11"
authors = [
{ name = "mrom1", email = "[email protected]" }
]
description="ASAP2 A2L file parsing tool."
readme = "README.md"
keywords = ["a2lparser", "A2L", "ASAP2", "ASAM MCD-2MC"]
license = { file = "LICENSE" }
dynamic = ["version"]
classifiers = [
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
]
dependencies = [
"ply",
"loguru",
"alive-progress",
"prompt-toolkit",
"pyyaml",
"xmltodict",
]
[project.urls]
"Homepage" = "https://github.com/mrom1/a2lparser"
"Repository" = "https://github.com/mrom1/a2lparser.git"
"Bug Reports" = "https://github.com/mrom1/a2lparser/issues"
[tool.setuptools.packages.find]
exclude = ["tests*"]
[tool.setuptools]
package-data = {"a2lparser" = ["*.cfg", "*.config"]}
[project.scripts]
a2lparser = "a2lparser.main:main"
[tool.black]
line-length = 100
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| \.env
| _build
| buck-out
| build
| dist
)/
'''
# Uncomment to always show output from tests in pytest
# [tool.pytest.ini_options]
# addopts = "-s"
[tool.pylint.messages_control]
max-line-length = 128
disable="C0114, R0903, W0718, W0401, C0302"