This commit is contained in:
1-6
2023-08-09 10:21:56 +08:00
parent 2cbcfa1a5e
commit 70bad0cc52
11 changed files with 725 additions and 129 deletions
+12
View File
@@ -0,0 +1,12 @@
from distutils.core import setup
from Cython.Build import cythonize
setup(
ext_modules = cythonize("sillygirl.py"),
libraries=[
"srpc_pb2",
"srpc_pb2_grpc",
"grpc",
"google.protobuf",
] # 指定第三方依赖项所在的库
)