-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (47 loc) · 1.24 KB
/
Copy pathpyproject.toml
File metadata and controls
54 lines (47 loc) · 1.24 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "python-can-cansub"
version = "2026.08.17"
authors = [
{ name="CSS Electronics" },
{ email="contact@csselectronics.com" },
]
description = "CANsub python-can interface"
license = { text = "MIT" }
readme = "README.md"
requires-python = ">=3.12"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
'python-can >= 4.6.0',
'wsproto >= 1.3.2',
'requests >= 2.32.5',
'zeroconf >= 0.131.0',
]
[project.optional-dependencies]
test = [
'pytest >= 8.0',
]
[project.entry-points."can.interface"]
cansub = "python_can_cansub.cansub:CanSub"
[project.entry-points."can.io.message_writer"]
csv = "python_can_cansub.cansub_csv:CanSubCSVWriter"
[project.entry-points."can.io.message_reader"]
csv = "python_can_cansub.cansub_csv:CanSubCSVReader"
[project.urls]
"Homepage" = "https://csselectronics.com/"
"Source" = "https://github.com/CSS-Electronics/python-can-cansub"
"Changelog" = "https://github.com/CSS-Electronics/python-can-cansub/blob/master/CHANGELOG.md"
[tool.pytest.ini_options]
pythonpath = [
"src",
".",
]
testpaths = [
"tests",
]