-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (32 loc) · 988 Bytes
/
pyproject.toml
File metadata and controls
38 lines (32 loc) · 988 Bytes
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
[build-system]
requires = ["setuptools>=80", "wheel", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "can-waveshare"
dynamic = ["version"]
description = "python-can backend for Waveshare 2-CH-CAN-TO-ETH (13-byte TCP wire format over TCP)"
readme = "README.md"
requires-python = ">=3.10"
license = "Apache-2.0"
authors = [{ name = "Klaudiusz Staniek" }]
dependencies = ["python-can>=4.2"]
[project.urls]
Homepage = "https://github.com/kstaniek/python-can-waveshare-eth"
Issues = "https://github.com/kstaniek/python-can-waveshare-eth/issues"
[project.entry-points."can.interface"]
waveshare = "can_waveshare:WaveShareBus"
[tool.pytest.ini_options]
addopts = "-q"
testpaths = ["tests"]
[project.optional-dependencies]
dev = [
"pytest>=8.2",
"pytest-timeout>=2.3",
"pre-commit==4.5.1",
"pre-commit-hooks==6.0.0",
"ruff>=0.13",
"codespell>=2.4"
]
[tool.setuptools_scm]
version_scheme = "post-release"
local_scheme = "no-local-version"