Bump to v0.1.0

This commit is contained in:
Richard Chien 2018-07-22 22:29:08 +08:00
parent 62eb4510a4
commit c20e3ea6ac
2 changed files with 6 additions and 3 deletions

View File

@ -1,7 +1,10 @@
# None Bot
[![License](https://img.shields.io/pypi/l/none-bot.svg)](LICENSE)
[![PyPI](https://img.shields.io/pypi/v/none-bot.svg)](https://pypi.python.org/pypi/none-bot)
None Bot 是一个基于 [酷 Q](https://cqp.cc/) 的 Python 异步 QQ 机器人框架,框架与酷 Q 交互的部分使用 [aiocqhttp](https://github.com/richardchien/python-aiocqhttp),后者是 [CoolQ HTTP API 插件](https://github.com/richardchien/coolq-http-api) 的一个 Python 异步 SDK。
None Bot 本身不包含任何实际功能,仅仅提供处理消息、解析命令等核心功能,框架的使用者需要使用框架提供的接口,以插件的形式来编写具体功能。
文档稍后送上(
文档暂时还没写,请先参考 [none.plugins](none/plugins)、[none_demo](none_demo) 模块和 [richardchien/maruko](https://github.com/richardchien/maruko) 项目中的使用方式。

View File

@ -5,7 +5,7 @@ with open('README.md', 'r', encoding='utf-8') as f:
setup(
name='none-bot',
version='0.0.1',
version='0.1.0',
packages=find_packages(include=('none', 'none.*')),
url='https://github.com/richardchien/none-bot',
license='MIT License',
@ -14,7 +14,7 @@ setup(
description='A QQ bot framework',
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=['aiocqhttp>=0.5', 'aiocache'],
install_requires=['aiocqhttp>=0.6', 'aiocache>=0.10'],
python_requires='>=3.6',
platforms='any',
classifiers=(