-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.py
26 lines (23 loc) · 835 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
import setuptools
with open('README.md', 'r', encoding='utf-8') as fh:
long_description = fh.read()
setuptools.setup(
name='miraicle',
version='0.3.10',
author='Excaive',
description='A Python SDK with async I/O based on mirai-api-http.',
license='AGPL 3.0',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/Excaive/miraicle',
install_requires=['requests', 'websocket-client', 'aiohttp'],
packages=setuptools.find_packages(),
classifiers=[
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
keywords='mirai, bot, asyncio, http, websocket',
python_requires='>=3.6',
)