I solved the problem by processing static files separately without using 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
cumul
source share