-
Notifications
You must be signed in to change notification settings - Fork 39
/
setup.py
33 lines (31 loc) · 1014 Bytes
/
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
from setuptools import setup, find_packages
with open('README.md', 'r', encoding='utf-8') as f:
long_description = f.read()
setup(
name='aiocqhttp',
version='1.4.4',
url='https://github.com/nonebot/aiocqhttp',
license='MIT License',
author='Richard Chien',
author_email='[email protected]',
maintainer='NoneBot Team',
description='A Python SDK with async I/O for OneBot (CQHTTP).',
long_description=long_description,
long_description_content_type="text/markdown",
packages=find_packages(include=('aiocqhttp', 'aiocqhttp.*')),
package_data={
'': ['*.pyi'],
},
install_requires=['Quart>=0.17,<1.0', 'httpx>=0.11,<1.0'],
extras_require={
'all': ['ujson'],
},
python_requires='>=3.7',
platforms='any',
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Framework :: Robot Framework',
],
)