21 lines
449 B
TOML
21 lines
449 B
TOML
[build-system]
|
|
requires = ["setuptools>=61.0"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "woa"
|
|
version = "0.1.0"
|
|
description = "Agent + Skillkit integration module with multi-skill, multi-script support"
|
|
authors = [
|
|
{ name="Your Name", email="you@example.com" }
|
|
]
|
|
readme = "README.md"
|
|
requires-python = ">=3.10"
|
|
dependencies = [
|
|
"wechatpy"
|
|
]
|
|
|
|
[tool.setuptools]
|
|
# 明确告诉它只包含 skillagent 目录
|
|
packages = ["woa"]
|