将一个dll/so添加到python构建的发行版中

前端之家收集整理的这篇文章主要介绍了将一个dll/so添加到python构建的发行版中前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我编译了 python wrapper的nanomsg,我想为包创建一个python安装程序.可以通过运行创建包
python setup.py bdist --format=wininst

但是我想将nanomsg.dll / nanomsg.so包含在安装程序/包中,但我没有找到有关此问题的任何文档.

如文档 here所述,需要将以下代码添加到他的setup.py脚本中:
setup(
name='nanomsg',version=__version__,packages=[str('nanomsg'),str('_nanomsg_ctypes'),str('nanomsg_wrappers')],data_files=[('lib\\site-packages\\',["C:\\Dev\\external\\nanomsg\\x86\\Release\\nanomsg.dll"])],
原文链接:https://www.f2er.com/windows/364364.html

猜你在找的Windows相关文章