forked from nonebot/nonebot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (32 loc) · 1.04 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
from setuptools import setup, find_packages
with open('README.md', 'r', encoding='utf-8') as f:
long_description = f.read()
packages = find_packages(include=('nonebot', 'nonebot.*'))
setup(
name='nonebot',
version='1.6.0',
url='https://github.com/nonebot/nonebot',
license='MIT License',
author='NoneBot Team',
description='An asynchronous QQ bot framework based on CoolQ.',
long_description=long_description,
long_description_content_type='text/markdown',
packages=packages,
package_data={
'': ['*.pyi'],
},
install_requires=['aiocqhttp>=1.2,<1.3', 'aiocache>=0.10,<1.0'],
extras_require={
'scheduler': ['apscheduler'],
},
python_requires='>=3.7',
platforms='any',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Framework :: Robot Framework',
'Framework :: Robot Framework :: Library',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
],
)