-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
41 lines (37 loc) · 1.49 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
36
37
38
39
40
41
from setuptools import setup, find_packages
with open('README.md', encoding="utf-8") as f:
long_description = f.read()
setup(
name='nonebot-plugin-partner-join',
version='0.1.3.9.1',
description='NoneBot2 plugin used to generate maimaiDX travel companion add pictures (rotating gif) and can also be used to generate pictures similar to embed the corresponding circular frame (such as embedding the picture into the school badge).',
long_description=long_description,
long_description_content_type='text/markdown',
author='YuuzukiRin',
author_email='yuuzukirin@outlook.com',
url='https://github.com/YuuzukiRin/nonebot_plugin_partner_join',
packages=find_packages(),
install_requires=[
"nonebot2>=2.2.0",
"nonebot-adapter-onebot>=2.4.4",
"nonebot-plugin-alconna>=0.52.0",
"nonebot-plugin-apscheduler>=0.4.0",
'nonebot-plugin-localstore>=0.7.0',
"Pillow>=10.2.0",
"httpx>=0.27.0",
"tarina>=0.6.0"
],
classifiers=[
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
python_requires='>=3.8',
package_data={
'nonebot_plugin_partner_join': ['background/*.gif'],
},
include_package_data=True,
)