feat: init

This commit is contained in:
chuan
2026-06-02 23:03:42 +08:00
Unverified
commit e80539af4c
12 changed files with 405 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
[project]
name = "auto-answer"
version = "0.1.0"
description = "Simple Python auto-answer bot framework"
readme = "README.md"
authors = [
{ name = "chuan", email = "pchuan98@qq.com" }
]
requires-python = ">=3.13"
dependencies = [
"playwright>=1.60.0",
"pydantic-settings>=2.14.1",
"python-dotenv>=1.2.2",
]
[project.scripts]
auto-answer = "auto_answer.cli:main"
[build-system]
requires = ["uv_build>=0.9.18,<0.10.0"]
build-backend = "uv_build"