22 lines
487 B
TOML
22 lines
487 B
TOML
[build-system]
|
|
requires = ["setuptools>=68.0", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "polisher-control-host"
|
|
version = "0.1.0"
|
|
description = "Host-side scaffold for Fullum polisher-control"
|
|
requires-python = ">=3.11"
|
|
dependencies = []
|
|
|
|
[project.optional-dependencies]
|
|
dev = ["pytest>=8", "jsonschema>=4"]
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["host"]
|
|
include = ["polisher_control*"]
|
|
|
|
[tool.pytest.ini_options]
|
|
testpaths = ["tests"]
|
|
pythonpath = ["host"]
|