Python 打包include non-py file

Python打包的时候默认是将.py文件全部打包

但是有时候我们需要把non-py文件打包,比如说json文件

有个机制可以让我们做到:

The mechanism that provides this is the MANIFEST.in file. This is relatively quite simple: MANIFEST.in is really just a list of relative file paths specifying files or globs to include.:

include README.rst
include docs/*.txt
include funniest/data.json

为了让上面的能够work,我们需要在setup.py里面讲include_package_data=True添加上

In order for these files to be copied at install time to the package’s folder inside site-packages, you’ll need to supply include_package_data=True to the setup() function.

参考:http://python-packaging.readthedocs.io/en/latest/non-code-files.html

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容