python distutils 不包含 data_files

发布于 2024-09-04 06:11:47 字数 417 浏览 3 评论 0原文

我是 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

美羊羊 2024-09-11 06:11:47

您可能需要添加一个包含“include app/scrapper.db”MANIFEST.in文件。

这是 distutils 中的一个错误,使得这一点变得必要:data_filespackage_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 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.

日记撕了你也走了 2024-09-11 06:11:47

尝试删除 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文