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-08-26 05:44:54 +00:00
version='0.3.1',
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-07-22 14:29:08 +00:00
install_requires=['aiocqhttp>=0.6', 'aiocache>=0.10'],
2018-08-26 02:05:42 +00:00
extras_require={
'Scheduler': ['apscheduler>=1.2'],
},
2018-06-26 02:25:11 +00:00
python_requires='>=3.6',
platforms='any',
classifiers=(
2018-08-16 17:02:45 +00:00
'Development Status :: 3 - Alpha',
'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
),
)