17 lines
381 B
TOML
17 lines
381 B
TOML
[build-system]
|
|
requires = ["setuptools>=61"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "robot-bt-coordinator"
|
|
version = "1.2.0"
|
|
description = "Robot behavior-tree task coordinator"
|
|
requires-python = ">=3.10"
|
|
|
|
[project.scripts]
|
|
robot-bt-coordinator = "robot_bt_coordinator.cli:main"
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["."]
|
|
include = ["robot_bt_coordinator*"]
|