chore (pyqdes): 合并代码仓库

This commit is contained in:
helloplhm-qwq
2024-04-20 23:08:49 +08:00
parent 5076086b0e
commit 56a8c2d18c
5 changed files with 388 additions and 0 deletions

16
deps/pyqdes/setup.py vendored Normal file
View File

@ -0,0 +1,16 @@
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],
)