notification_buddy / pyproject.toml
jrubiosainz's picture
Initial publish: notification_buddy
9f60036 verified
raw
history blame contribute delete
719 Bytes
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "notification_buddy"
version = "0.1.0"
description = "WebSocket server that receives notifications and triggers type-specific robot reactions"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"reachy-mini",
"websockets",
"numpy"
]
keywords = ["reachy-mini-app"]
[project.entry-points."reachy_mini_apps"]
notification_buddy = "notification_buddy.main:NotificationBuddy"
[tool.setuptools]
package-dir = { "" = "." }
include-package-data = true
[tool.setuptools.packages.find]
where = ["."]
[tool.setuptools.package-data]
notification_buddy = ["**/*"] # Also include all non-.py files