setup.py 和源代码控制存储库

发布于 2024-12-04 22:38:59 字数 137 浏览 1 评论 0原文

我即将构建一个新的 python 库,并且正在寻找有关 Python 打包的信息。

我知道“setup.py”是控制一切的脚本。我想知道当 svn 中有外部库时如何处理它。

如何使用“setup.py”从存储库自动下载给定版本?

I am about to build a new python lib and I was seeking information concerning packaging in Python.

I understand that "setup.py" is the script that controls everything. I wonder how to deal with it when there are external libraries in svn for instance.

How to download automatically a given version from the repository using "setup.py" ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

笨笨の傻瓜 2024-12-11 22:38:59

有关此内容的文档位于 奶酪店

使用requires 关键字

docs for this are at the cheese shop

use the requires keyword

半衾梦 2024-12-11 22:38:59

我可能没有正确理解这个问题。
对于任何其他依赖项,您可以在 setup.py 中将它们提及为

install_requires=['模块1>=1.3','模块2>=1.8.2']

当您使用 setuptools、easy_install oo pip 时,如果需要,这些外部依赖项将在安装过程中安装。这些也应该可以在软件包存储库中下载。

I may not have understood the problem correctly.
For any additional dependencies, you mention them in setup.py as

install_requires=['module1 >= 1.3', 'module2 >=1.8.2']

When you use setuptools, easy_install oo pip, these external dependencies will get installed during setup, if required. These should also be available in package repositories for download.

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