-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
22 lines (20 loc) · 982 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
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="nonebot-plugin-hx-yinying",
version="1.4.10",
author="Huan Xin",
author_email="mc.xiaolang@foxmail.com",
description="chat with yinying",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/huanxin996/nonebot_plugin_hx-yinying",
packages=setuptools.find_packages(),
install_requires=['nonebot2>=2.2.1', 'ujson>=5.9.0', 'httpx>=0.27.0', 'nonebot-adapter-onebot>=2.4.3', 'nonebot_plugin_localstore>=0.6.0', 'pydantic>=1.10.12','requests>=2.31.0','nonebot_plugin_apscheduler>=0.4.0','nonebot_plugin_htmlrender>=0.3.0','pillow>=9.3.0','tqdm>=4.65.0','alibabacloud_imageaudit20191230>=2.0.5'],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)