向setup.py sdist添加符号链接

时间:2018-09-22 20:32:36

标签: python python-3.x pip symlink setup.py

我想创建一个“ python3 setup.py sdist”发行版,以便通过pip在pypi.org上提供myprogram.py。 'myprogram.py'需要一些其他文件(例如conf,images)。说,我们有以下布局:

myprogram.py
myprogram.conf
images ---
       image1.png
       image2.png
        ...
other_data ---
       other_data1.txt
       other_data2.txt
       images --> images

我找不到在〜/ .local / lib / python3.5 / site-packages /中的目录“ other_data”中“安装”符号链接“ images-> images”的方法 像

recursive-include other_data *

在“ manifest.in”或

'data_files=['other_data', ['other_data1.txt',
                            'images']), 
setup.py中的

不起作用。 如何正确添加符号链接?

0 个答案:

没有答案