nonebot2/setup.py

35 lines
1.2 KiB
Python
Raw Normal View History

2018-06-26 02:25:11 +00:00
from setuptools import setup, find_packages
with open('README.md', 'r', encoding='utf-8') as f:
long_description = f.read()
setup(
name='none-bot',
2018-12-25 12:47:26 +00:00
version='0.5.2',
2018-06-26 02:25:11 +00:00
packages=find_packages(include=('none', 'none.*')),
url='https://github.com/richardchien/none-bot',
2018-06-29 14:54:24 +00:00
license='MIT License',
2018-06-26 02:25:11 +00:00
author='Richard Chien',
author_email='richardchienthebest@gmail.com',
2018-08-16 17:02:45 +00:00
description='An asynchronous QQ bot framework based on CoolQ.',
2018-06-26 02:25:11 +00:00
long_description=long_description,
2018-08-16 17:02:45 +00:00
long_description_content_type='text/markdown',
2018-11-11 04:41:40 +00:00
install_requires=['aiocqhttp>=0.6.5', 'aiocache>=0.10'],
2018-08-26 02:05:42 +00:00
extras_require={
2018-09-05 01:14:14 +00:00
'scheduler': ['apscheduler>=1.2'],
2018-08-26 02:05:42 +00:00
},
2018-06-26 02:25:11 +00:00
python_requires='>=3.6',
platforms='any',
classifiers=(
2018-12-22 16:03:48 +00:00
'Development Status :: 4 - Beta',
2018-08-16 17:02:45 +00:00
'Framework :: Robot Framework',
'Framework :: Robot Framework :: Library',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
2018-08-16 17:04:04 +00:00
'Programming Language :: Python :: 3 :: Only',
2018-08-16 17:02:45 +00:00
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
2018-06-26 02:25:11 +00:00
),
)