34 lines
665 B
TOML
34 lines
665 B
TOML
[project]
|
|
name = "line-laser-modbus"
|
|
version = "0.1.0"
|
|
description = "Modbus RTU protocol tools for line laser vision and motion controller communication"
|
|
readme = "README.md"
|
|
requires-python = ">=3.12,<3.13"
|
|
dependencies = [
|
|
"pymodbus[serial]>=3.11.3",
|
|
]
|
|
|
|
[project.scripts]
|
|
line-laser-modbus = "line_laser_modbus.cli:main"
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"pytest>=9.0.1",
|
|
"ruff>=0.14.6",
|
|
]
|
|
|
|
[build-system]
|
|
requires = ["uv_build>=0.11.14,<0.12.0"]
|
|
build-backend = "uv_build"
|
|
|
|
[tool.ruff]
|
|
line-length = 100
|
|
target-version = "py312"
|
|
|
|
[tool.ruff.lint]
|
|
select = ["E", "F", "I", "UP", "B", "SIM"]
|
|
|
|
[tool.pytest.ini_options]
|
|
addopts = "-q"
|
|
testpaths = ["tests"]
|