diff --git a/README.md b/README.md new file mode 100644 index 0000000..77066e0 --- /dev/null +++ b/README.md @@ -0,0 +1,25 @@ +# hk-reporter 通用订阅推送插件 + +## 简介 +一款自动爬取各种站点,社交平台更新动态,并将信息推送到QQ的机器人。基于 [`NoneBot2`](https://github.com/nonebot/nonebot2 ) 开发。 + +支持的平台: +* 微博 +* bilibili + +## 文档 +TBD(会写的会写的) + +## 功能 +* 定时爬取制定网站 +* 通过图片发送文本,防止风控 +* 使用队列限制发送频率 + +## 鸣谢 +* [`go-cqhttp`](https://github.com/Mrs4s/go-cqhttp):简单又完善的 cqhttp 实现 +* [`NoneBot2`](https://github.com/nonebot/nonebot2):超好用的开发框架 +* [`HarukaBot`](https://github.com/SK-415/HarukaBot/): 借鉴了相当多的东西 + +## License +MIT + diff --git a/pyproject.toml b/pyproject.toml index b1d6104..56c5f13 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,8 +6,16 @@ authors = ["felinae98 "] license = "MIT" homepage = "https://github.com/felinae98/nonebot-hk-reporter" keywords = ["nonebot", "nonebot2", "qqbot"] +readme = "README.md" packages = [ - { include = "hk_reporter/*.py", from = "./src/plugins/" } + { include = "hk_reporter/*.py", from = "./src/plugins/" }, + { include = "hk_reporter/platform/*.py", from = "./src/plugins/" } +] +classifiers = [ + Development Status :: 2 - Pre-Alpha + Operating System :: POSIX :: Linux + Programming Language :: Python :: 3.9 + Programming Language :: Python :: Implementation :: CPython ] [tool.poetry.dependencies]