Bump version to 0.2.0

This commit is contained in:
Richard Chien 2018-08-17 01:02:45 +08:00
parent bd27424020
commit 6221eb8d64

View File

@ -5,21 +5,27 @@ with open('README.md', 'r', encoding='utf-8') as f:
setup( setup(
name='none-bot', name='none-bot',
version='0.1.0', version='0.2.0',
packages=find_packages(include=('none', 'none.*')), packages=find_packages(include=('none', 'none.*')),
url='https://github.com/richardchien/none-bot', url='https://github.com/richardchien/none-bot',
license='MIT License', license='MIT License',
author='Richard Chien', author='Richard Chien',
author_email='richardchienthebest@gmail.com', author_email='richardchienthebest@gmail.com',
description='A QQ bot framework', description='An asynchronous QQ bot framework based on CoolQ.',
long_description=long_description, long_description=long_description,
long_description_content_type="text/markdown", long_description_content_type='text/markdown',
install_requires=['aiocqhttp>=0.6', 'aiocache>=0.10'], install_requires=['aiocqhttp>=0.6', 'aiocache>=0.10'],
python_requires='>=3.6', python_requires='>=3.6',
platforms='any', platforms='any',
classifiers=( classifiers=(
"Programming Language :: Python :: 3", 'Development Status :: 3 - Alpha',
"License :: OSI Approved :: MIT License", 'Framework :: Robot Framework',
"Operating System :: OS Independent", 'Framework :: Robot Framework :: Library',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3 :: Only',
), ),
) )