diff --git a/README.md b/README.md index 4945894..74b743a 100644 --- a/README.md +++ b/README.md @@ -50,9 +50,9 @@ pipx install ksaa 如果你不想使用 pipx,也可以手动创建虚拟环境,并使用普通的 pip 安装。 -安装完成后,只需要运行 `ksaa` 命令即可启动 GUI 界面: +安装完成后,只需要运行 `kaa` 命令即可启动 GUI 界面: ```bash -ksaa +kaa ``` 需要注意的是,配置文件 `config.json` 会自动在工作目录下生成。 @@ -67,14 +67,14 @@ TODO > 建议使用 **REGULAR 模式**, > 因为 PRO 模式还没有经过充分测试。 -> ![IMPORTANT] +> [!IMPORTANT] > 尽管名字叫“琴音小助手”,但是强烈建议你 > **不要在自动培育中使用琴音**。 > > 因为琴音的黄色服饰会严重干扰推荐卡的检测, > 导致打出错误的技能卡。 -> ![IMPORTANT] +> [!IMPORTANT] > 建议**使用亲密度至少为 7 的偶像**进行培育, > 因为琴音小助手暂时无法处理亲密度提升事件。 diff --git a/kotonebot/tasks/__init__.py b/kotonebot/tasks/__init__.py new file mode 100644 index 0000000..e7505d0 --- /dev/null +++ b/kotonebot/tasks/__init__.py @@ -0,0 +1 @@ +__version__ = '2025.2.14' \ No newline at end of file diff --git a/pyproject.template.toml b/pyproject.template.toml deleted file mode 100644 index b28b579..0000000 --- a/pyproject.template.toml +++ /dev/null @@ -1,40 +0,0 @@ -[build-system] -requires = ["setuptools>=61.0"] -build-backend = "setuptools.build_meta" - -[project] -name = "ksaa" -version = "<<>>" -description = "Kotones Auto Assistant" -readme = "README.md" -requires-python = ">=3.10" -dependencies = [ - # 图像处理 & OCR - "opencv-python==4.10.0.84", - "rapidocr_onnxruntime==1.4.3", - "av==14.0.1", - "scikit-image==0.25.0", - "thefuzz==0.22.1", - # Adb 控制 - "adbutils==2.8.0", - # 可视化调试页面 - "fastapi==0.115.6", - "uvicorn==0.34.0", - "python-multipart==0.0.20", - "websockets==14.1", - "numpy==2.2.1", - "psutil==6.1.1", - # GUI - "gradio==5.12.0", - # 配置读写 - "pydantic==2.10.4", - # 其他 - "typing-extensions==4.12.2" -] - -[tool.setuptools] -package-dir = { "kotonebot" = "kotonebot", "kotonebot.res" = "res" } -include-package-data = true - -[project.scripts] -ksaa = "kotonebot.ui.gr:main"