-
Notifications
You must be signed in to change notification settings - Fork 407
/
Copy pathpyproject.toml
91 lines (84 loc) · 2.4 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
[build-system]
requires = ["setuptools >= 40.8.0"]
build-backend = "setuptools.build_meta"
[project]
name = "canmatrix"
dynamic = ["readme", "version"]
description = "Automotive Communication Matrix"
authors = [{ name="Eduard Bröcker", email = "[email protected]" }]
maintainers = [{ name = "canmatrix contributors" }]
dependencies = [
"attrs>=19.2.0",
"click",
"importlib-metadata; python_version < '3.8'",
"typing; python_version < '3.5'",
]
requires-python = ">=3.8"
keywords = [
"CAN",
"canbus",
"dbc",
"arxml",
"kcd",
"dbf",
"sym",
"fibex",
"eds",
"automotive",
]
license = { text = "BSD-2-Clause" }
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Information Technology",
"Intended Audience :: Manufacturing",
"Intended Audience :: Telecommunications Industry",
"License :: OSI Approved :: BSD License",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
"Programming Language :: Python",
"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",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Embedded Systems :: Controller Area Network (CAN)",
"Topic :: System :: Networking",
"Topic :: Utilities",
]
[project.scripts]
cancompare = "canmatrix.cli.compare:cli_compare"
canconvert = "canmatrix.cli.convert:cli_convert"
[project.urls]
homepage = "https://github.com/ebroecker/canmatrix"
documentation = "https://canmatrix.readthedocs.io"
repository = "https://github.com/ebroecker/canmatrix"
[project.optional-dependencies]
arxml = ["lxml"]
csv = []
dbc = []
dbf = []
fibex = ["lxml"]
json = []
kcd = ["lxml"]
ldf = ["ldfparser"]
odx = ["lxml"]
scapy = []
sym = []
test = ["pathlib2; python_version < '3.4'", "pytest"]
wireshark = []
xls = ["xlrd==1.2.0", "xlwt"]
xlsx = ["openpyxl"]
yaml = ["pyyaml"]
eds = ["canopen"]
[tool.setuptools.dynamic]
readme = { file = "README.rst" }
version = {attr = "canmatrix.__version__"}
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
canmatrix = ["j1939.dbc", "py.typed"]