You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

24 lines
520 B

[project]
name = "duplo-controller"
version = "0.1.0"
description = "Python library to control LEGO DUPLO Train Hub (Hub #5) over BLE"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"bleak>=0.22.0",
]
[project.scripts]
duplo-test = "duplo_controller.cli:main"
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
package-dir = {"" = "."}
[tool.setuptools.packages.find]
where = ["."]
include = ["duplo_controller*"]
exclude = ["tests*"]