nonebot2/setup.py

37 lines
1.1 KiB
Python
Raw Normal View History

2020-02-10 04:09:16 +00:00
from setuptools import setup, find_packages
2018-06-26 02:25:11 +00:00
with open('README.md', 'r', encoding='utf-8') as f:
long_description = f.read()
2019-01-25 08:03:08 +00:00
packages = find_packages(include=('nonebot', 'nonebot.*'))
2018-06-26 02:25:11 +00:00
setup(
2018-12-27 12:23:45 +00:00
name='nonebot',
2020-02-14 09:07:22 +00:00
version='1.4.1',
2018-12-27 12:23:45 +00:00
url='https://github.com/richardchien/nonebot',
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',
2019-01-25 08:03:08 +00:00
packages=packages,
2020-02-10 04:09:16 +00:00
package_data={
'': ['*.pyi'],
},
2020-02-10 06:15:01 +00:00
install_requires=['aiocqhttp>=1.2,<1.3', 'aiocache>=0.10,<1.0'],
2018-08-26 02:05:42 +00:00
extras_require={
2020-02-10 06:15:01 +00:00
'scheduler': ['apscheduler'],
2018-08-26 02:05:42 +00:00
},
2020-02-10 06:15:01 +00:00
python_requires='>=3.7',
2018-06-26 02:25:11 +00:00
platforms='any',
2019-01-25 14:41:59 +00:00
classifiers=[
2018-12-27 12:23:45 +00:00
'Development Status :: 5 - Production/Stable',
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',
2019-01-25 14:41:59 +00:00
],
2018-06-26 02:25:11 +00:00
)