19 lines
429 B
TOML
19 lines
429 B
TOML
[project]
|
|
name = "wechat-bot"
|
|
version = "0.1.0"
|
|
description = "企业微信消息分发中转站 - 企业微信与 Agent 的桥梁"
|
|
requires-python = ">=3.10"
|
|
dependencies = [
|
|
"wecom-aibot-python-sdk>=1.0.1",
|
|
"python-dotenv>=1.0.0",
|
|
"httpx>=0.27.0",
|
|
"aiosqlite>=0.20.0",
|
|
]
|
|
|
|
[build-system]
|
|
requires = ["setuptools>=68.0"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[tool.setuptools.packages.find]
|
|
include = ["bot*"]
|