-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (38 loc) · 1.04 KB
/
pyproject.toml
File metadata and controls
44 lines (38 loc) · 1.04 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "python-can-cansub"
version = "2026.05.28"
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.entry-points."can.interface"]
cansub = "python_can_cansub.cansub:CanSub"
[project.entry-points."can.io.message_writer"]
csv = "python_can_cansub.cansub:CanSubCSVWriter"
[project.entry-points."can.io.message_reader"]
csv = "python_can_cansub.cansub:CanSubCSVReader"
[project.urls]
"Homepage" = "https://csselectronics.com/"
"Source" = "https://github.com/CSS-Electronics/python-can-cansub"
[tool.pytest.ini_options]
pythonpath = [
"."
]