setup.py 和源代码控制存储库
我即将构建一个新的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
有关此内容的文档位于 奶酪店
使用requires 关键字
docs for this are at the cheese shop
use the requires keyword
我可能没有正确理解这个问题。
对于任何其他依赖项,您可以在 setup.py 中将它们提及为
当您使用 setuptools、easy_install oo pip 时,如果需要,这些外部依赖项将在安装过程中安装。这些也应该可以在软件包存储库中下载。
I may not have understood the problem correctly.
For any additional dependencies, you mention them in setup.py as
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.