-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
41 lines (38 loc) · 1.32 KB
/
setup.py
File metadata and controls
41 lines (38 loc) · 1.32 KB
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
import io
import os
version = os.environ.get('RELEASE_VERSION', '0.3.0'
'').lstrip('v')
setup(
name="chatgpt-mirai-qq-bot-api-collection",
version=version,
packages=find_packages(),
include_package_data=True, # 这行很重要
package_data={
"api_collection": ["example/*.yaml", "example/*.yml"],
},
install_requires=["kirara-ai>=3.2.0"
],
entry_points={
'chatgpt_mirai.plugins': [
'api_collection = api_collection:ApiCollectionPlugin'
]
},
author="chuanSir",
author_email="416448943@qq.com",
description="ApiCollectionPlugin for lss233/chatgpt-mirai-qq-bot",
long_description=io.open("README.md", encoding='utf-8').read(),
long_description_content_type="text/markdown",
url="https://github.com/chuanSir123/api_collection",
classifiers=[
"Programming Language :: Python :: 3",
'License :: OSI Approved :: GNU Affero General Public License v3',
"Operating System :: OS Independent",
],
project_urls={
"Bug Tracker": "https://github.com/chuanSir123/api_collection/issues",
"Documentation": "https://github.com/chuanSir123/api_collection/wiki",
"Source Code": "https://github.com/chuanSir123/api_collection",
},
python_requires=">=3.8",
)