mirror of
https://github.com/MeoProject/lx-music-api-server.git
synced 2025-05-23 19:17:41 +08:00
17 lines
382 B
Python
17 lines
382 B
Python
from setuptools import setup, Extension
|
|
import pybind11
|
|
|
|
module = Extension(
|
|
'qdes',
|
|
sources=['main.cpp'],
|
|
include_dirs=[pybind11.get_include(), pybind11.get_include(user=True)],
|
|
extra_compile_args=["-std=c++11"], # 添加编译器选项
|
|
)
|
|
|
|
setup(
|
|
name='qdes',
|
|
version='1.0',
|
|
description='QDES encryption/decryption module',
|
|
ext_modules=[module],
|
|
)
|