8

我目前正在使用 setuptools 对 setup.py 进行编码。我想将静态数据(不是 Python 模块)复制到站点包。

问题是,当前文件夹层次结构如下所示:

setup.py
src
    Pure Python Module
skeleton
    example
        __init__.py
    resources
        static
            error.css
            example.css
            logo_shadow.png
        template
            error.html
            example.html
    server.tmplt

我想在维护文件夹结构/层次结构的同时将骨架目录复制到站点包,但是我应该怎么做呢?

4

1 回答 1

2

我通过单独处理静态文件解决了这个问题,而不是使用 setuptools。

from sys import argv
try:
    if argv[1] == 'install':
        from os.path import join
        from distutils.sysconfig import get_python_lib
        from shutil import copytree
        OrigSkeleton = join('src', 'skeleton')
        DestSkeleton = join(get_python_lib(), 'cumulus', 'skeleton')
        copytree(OrigSkeleton, DestSkeleton)

except IndexError: pass
于 2012-06-29T13:08:07.687 回答