From 526ea8ee7dbfc1bb4d1144a6fb660de128c53369 Mon Sep 17 00:00:00 2001 From: yumoqing Date: Sun, 1 Mar 2026 15:05:51 +0800 Subject: [PATCH] bugfix --- pyproject.toml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 pyproject.toml diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..64bfc84 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,20 @@ +[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"]