I am currently coding setup.py using setuptools. And I want to copy the static data (which is not a Python module) to site-packages.
The thing is, the current folder hierarchy is structured like the following:
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
I want to copy the skeleton directory to site-packages WHILE maintaining the folder structure/hierarchy, but how should I do this?
 
     
    