添加README 并发布到pypi

This commit is contained in:
2022-05-24 11:52:44 +08:00
parent c7b9716a70
commit 4ef577687c
4 changed files with 1449 additions and 8 deletions

7
.gitignore vendored
View File

@@ -1,6 +1 @@
/test.py
/Untitled-1.json
/Untitled-2.html
/Untitled-2.json
/Untitled-3.json
/Untitled-4.html
dist

40
README.md Normal file
View File

@@ -0,0 +1,40 @@
TETRIS Stats
============
一个基于nonebot2的用于查询TETRIS相关游戏玩家数据的插件
目前支持
* [TETR.IO](https://tetr.io/)
* [茶服](https://teatube.cn/tos/)
计划支持
* [TOP](http://tetrisonline.pl/)
安装
----
* 使用 pip
```
pip install nonebot-plugin-tetris-stats
```
使用
----
参考NoneBot2文档 [加载插件](https://v2.nonebot.dev/docs/tutorial/plugin/load-plugin/)
依赖
----
目前只支持 `OneBot V11` 协议
鸣谢
----
* [NoneBot2](https://v2.nonebot.dev/)
* [OneBot](https://onebot.dev/)
开源
----
本项目使用[MIT](https://github.com/shoucandanghehe/nonebot-plugin-tetris-stats/blob/main/LICENSE)许可证开源

1399
poetry.lock generated Normal file

File diff suppressed because it is too large Load Diff

View File

@@ -1,15 +1,22 @@
[tool.poetry]
name = "nonebot-plugin-tetris-stats"
version = "0.1.0"
description = ""
description = "一个基于nonebot2的用于查询TETRIS相关游戏玩家数据的插件"
authors = ["scdhh <wallfjjd@gmail.com>"]
readme = "README.md"
homepage = "https://github.com/shoucandanghehe/nonebot-plugin-tetris-stats"
repository = "https://github.com/shoucandanghehe/nonebot-plugin-tetris-stats"
license = "MIT"
[tool.poetry.dependencies]
python = "^3.10"
nonebot2 = "^2.0.0-beta.3"
nb-cli = "^0.6.7"
nonebot-adapter-onebot = "^2.0.0-beta.1"
aiohttp = "^3.8.1"
asyncio = "^3.4.3"
[tool.poetry.dev-dependencies]
mypy = "^0.950"
[build-system]
requires = ["poetry-core>=1.0.0"]