-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·41 lines (39 loc) · 1.1 KB
/
Copy pathsetup.py
File metadata and controls
executable file
·41 lines (39 loc) · 1.1 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 hyperot
setup(
name="hyper-bot",
provides=["hyperot"],
version=hyperot.HYPER_BOT_VERSION,
description="稳定高效、易于开发的QQ Bot框架",
author="Harcic",
author_email="harcic@outlook.com",
url="https://github.com/HarcicYang/HypeR_Bot",
packages=[
"hyperot",
"hyperot.adapters",
"hyperot.LecAdapters",
"hyperot.LecAdapters.OneBotLib",
"hyperot.LecAdapters.KritorLib",
"hyperot.LecAdapters.KritorLib.protos",
"hyperot.LecAdapters.MilkyLib",
"hyperot.utils",
] + [
f"hyperot.LecAdapters.KritorLib.protos.{i}"
for i in find_packages("hyperot/LecAdapters/KritorLib/protos")
],
py_modules=["hytil"],
install_requires=[
"aiohttp~=3.9.5",
"requests~=2.31.0",
"httpx~=0.26.0",
"grpclib~=0.4.7",
"betterproto~=2.0.0b7",
"websocket-client~=1.8.0",
"Flask~=3.0.0",
"google~=3.0.0",
"protobuf~=4.25.3",
"ucfgr",
"PyYAML"
],
include_package_data=True
)