-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
pyproject.toml
162 lines (144 loc) · 3.82 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
[project]
name = "py-uds"
description = "UDS (Unified Diagnostic Services) protocol handler."
readme = "README.rst"
requires-python = ">=3.8"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Information Technology",
"Intended Audience :: Telecommunications Industry",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Interface Engine/Protocol Translator",
"Topic :: Software Development :: Embedded Systems",
"Topic :: System :: Monitoring",
"Topic :: System :: Networking",
]
keywords = [
"uds",
"unified-diagnostic-services",
"automotive",
"on-board-diagnostic",
"obd",
"vehicle-diagnostic",
"iso14229",
"iso-14229",
"iso15765",
"iso-15765",
]
authors = [
{name="Maciej Dąbrowski", email="maciej.dabrowski@software-quality.pl"},
{name="UDS Package Development", email="uds-package-development@googlegroups.com"},
]
maintainers = [
{name="Maciej Dąbrowski", email="maciej.dabrowski@software-quality.pl"},
{name="UDS Package Development", email="uds-package-development@googlegroups.com"},
]
dependencies = [
"aenum >= 3.0.0",
"python-can == 4.*"
]
dynamic = ["version"]
[project.urls]
"Homepage" = "https://github.com/mdabrowski1990/uds"
"User Documentation" = "https://uds.readthedocs.io"
"Repository" = "https://github.com/mdabrowski1990/uds"
"Issues Tracking System" = "https://github.com/mdabrowski1990/uds/issues"
"Releases and Changelogs" = "https://github.com/mdabrowski1990/uds/releases"
"Security Policy" = "https://github.com/mdabrowski1990/uds/security/policy"
"PyPI" = "https://pypi.org/project/py-uds/"
"Wiki" = "https://github.com/mdabrowski1990/uds/wiki"
"Code Download" = "https://github.com/mdabrowski1990/uds/archive/refs/heads/main.zip"
[project.optional-dependencies]
test = [
"mock == 5.*",
"pytest == 8.*",
"pytest-cov",
"pytest-asyncio",
]
static-code-analysis = [
"prospector == 1.10.3",
"mypy == 1.9.0",
"vulture == 2.11",
"bandit == 1.7.8",
"pyroma == 4.2",
]
dependency-scan = [
"safety == 3.1.0",
"pip-audit == 2.7.3",
]
sorting-imports = [
"isort == 5.13.2"
]
docs = [
"sphinx",
"sphinx-autoapi",
"sphinx-rtd-theme",
"tomli",
]
docs-checks = [
"doc8 == 1.1.1",
]
[build-system]
requires = [
"setuptools >= 42",
"wheel"
]
build-backend = "setuptools.build_meta"
[tool.setuptools.dynamic]
version = {attr = "uds.__version__"}
[tool.setuptools.package-data]
"*" = [
"*.md",
"*.rst",
"*.txt",
"*.toml"
]
docs = [
"source/*.rst",
"source/pages/*.rst",
"source/*.png",
"source/*.drawio",
"source/*.tgn",
"source/*.md",
]
[tool.setuptools.packages.find]
include = [
"uds.*"
]
[tool.pytest.ini_options]
minversion = "7.0"
markers = [
"integration: Software integration tests.",
"performance: Performance (non-functional) tests."
]
testpaths = [
"tests/software_tests",
"tests/system_tests",
]
filterwarnings = "ignore:::.*uds*"
asyncio_mode = "strict"
[tool.isort]
src_paths = ["uds"]
line_length = 120
use_parentheses = true
include_trailing_comma = true
force_grid_wrap = 0
multi_line_output = 3
[tool.doc8]
max-line-length = 120
ignore = ["D004"]
ignore-path-errors = [
"docs\\source\\pages\\knowledge_base\\diagnostic_message.rst;D001", # tables
]