python distutils 不包含 data_files
我是 distutils 的新手..我试图在包中包含一些数据文件..这是我的代码..
from distutils.core import setup
setup(name='Scrapper',
version='1.0',
description='Scrapper',
packages=['app', 'db', 'model', 'util'],
data_files=[('app', ['app/scrapper.db'])]
)
执行 python setup.py sdist
后创建的 zip 文件不包括 scrapper .db 文件。我的应用程序目录中有 scrapper.db 文件。
感谢您的帮助。
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='Scrapper',
version='1.0',
description='Scrapper',
packages=['app', 'db', 'model', 'util'],
data_files=[('app', ['app/scrapper.db'])]
)
The zip file created after executing python setup.py sdist
does not include the scrapper.db file. I have scrapper.db file in the app directory..
thanks for the help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可能需要添加一个包含
“include app/scrapper.db”
的MANIFEST.in
文件。这是 distutils 中的一个错误,使得这一点变得必要:
data_files
或package_data
中的任何内容都应该自动包含在生成的MANIFEST
中。但在 Python 2.6 及更早版本中,它不是,因此您必须将其包含在 MANIFEST.in 中。该错误在 Python 2.7 中已修复。
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
orpackage_data
should be included in the generatedMANIFEST
automatically. But in Python 2.6 and earlier, it is not, so you have to include it inMANIFEST.in
.The bug is fixed in Python 2.7.
尝试删除 MANIFEST,这样 distutils 将被迫重新生成它。
注意:我一直在使用 python 3.x,所以我不知道这是否适用于 2.x。
Try removing MANIFEST, that way distutils will be forced to regenerate it.
Note: I've been using python 3.x, so I don't know if this works with 2.x or not.