nonebot2/setup.py

37 lines
1.1 KiB
Python
Raw Normal View History

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