23 lines
493 B
TOML
23 lines
493 B
TOML
[build-system]
|
|
requires = ["setuptools>=68", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "nanobot-channel-web"
|
|
version = "0.1.0"
|
|
description = "Web channel plugin for nanobot"
|
|
readme = "README.md"
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"nanobot-ai>=0.1.4",
|
|
"aiohttp>=3.9.0",
|
|
"pydantic>=2.7.0"
|
|
]
|
|
|
|
[project.entry-points."nanobot.channels"]
|
|
web = "nanobot_channel_web:WebChannel"
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["."]
|
|
include = ["nanobot_channel_web*"]
|