python distutils does not include data_files

前端 未结 2 504
青春惊慌失措
青春惊慌失措 2020-12-11 00:57

I am new to distutils.. I am trying to include few data files along with the package.. here is my code..

from distutils.core import setup

setup(name=\'Scrap         


        
2条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-12-11 01:17

    You probably need to add a MANIFEST.in file containing "include app/scrapper.db".

    It's a bug in distutils that makes this necessary: anything in data_files or package_data should be included in the generated MANIFEST automatically. But in Python 2.6 and earlier, it is not, so you have to include it in MANIFEST.in.

    The bug is fixed in Python 2.7.

提交回复
热议问题