使用 distutils 和 pip 部署子包
我想用 Python 创建一套相互关联的包。我希望它们全部位于同一个包下,但可以作为单独的组件安装。
因此,例如,安装基础包将提供 mypackage
但在 mypackage.subpackage
中不会有任何内容,直到我单独安装它。
这可以用 distutils 和 pip 实现吗?
I am wanting to create a suite of interrelated packages in Python. I would like them all to be under the same package but installable as separate components.
So, for example, installing the base package would provide the mypackage
but there would be nothing in mypackage.subpackage
until I install it separately.
Is this possible with distutils and pip?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您正在寻找的称为“命名空间包”,请参阅 此所以问题
What you are looking for is called "namespace packages", see this SO question