
修改版本号为0.1.0,打上这个tag然后push就可以提交到pypi了 要提交的变更: 修改: nonebot_plugin_helldivers_tools/data/equipment.json 重命名: "nonebot_plugin_helldivers_tools/img/helldivers/EXO-45 \347\210\261\345\233\275\350\200\205\350\243\205\347\224\262\350\200\205.png" -> "nonebot_plugin_helldivers_tools/img/helldivers/EXO-45 \347\210\261\345\233\275\350\200\205\345\244\226\351\252\250\351\252\274\350\243\205\347\224\262.png" 重命名: "nonebot_plugin_helldivers_tools/img/helldivers/EXO-49 \350\247\243\346\224\276\350\200\205\350\243\205\347\224\262.png" -> "nonebot_plugin_helldivers_tools/img/helldivers/EXO-49 \350\247\243\346\224\276\350\200\205\345\244\226\351\252\250\351\252\274\350\243\205\347\224\262.png" 删除: "nonebot_plugin_helldivers_tools/img/helldivers/\347\210\261\345\233\275\350\200\205\345\244\226\351\252\250\351\252\274\346\234\272\347\224\262\357\274\210EXO44\350\270\217\346\255\245\350\200\205\357\274\211.png" 修改: pyproject.toml
20 lines
559 B
TOML
20 lines
559 B
TOML
[tool.poetry]
|
|
name = "nonebot_plugin_helldivers_tools"
|
|
version = "0.1.0"
|
|
description = "NoneBot2 绝地潜兵助手"
|
|
readme = "README.md"
|
|
packages = [{include = "nonebot_plugin_helldivers_tools"}]
|
|
repository = "https://github.com/sansenhoshi/nonebot_plugin_helldivers_tools"
|
|
keywords = ["nonebot2", "helldivers"]
|
|
|
|
[tool.poetry.dependencies]
|
|
httpx = ">=0.23.3"
|
|
python = ">=3.9"
|
|
nonebot2 = ">=2.2.0"
|
|
nonebot-adapter-onebot = "^2.0.0"
|
|
pillow = ">=9.5.0"
|
|
playwright = ">=1.46.0"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api" |