Python setuptools 自定义配置
我正在打包一个 Python 模块,我希望用户能够使用一些自定义选项来构建该模块。具体来说,如果您向该包提供它可以使用的某些可执行文件,该包将发挥一些额外的作用。
理想情况下,用户应该运行 setup.py install
或 setup.py install --magic-doer=/path/to/executable
。如果他们使用第二个选项,我会在代码中的某个位置设置一个变量,然后从那里开始。
这可以通过 Python 的 setuptools 实现吗?如果是这样,我该怎么做?
I'm packaging up a Python module, and I would like users to be able to build the module with some custom options. Specifically, the package will do some extra magic if you provide it with certain executables that it can use.
Ideally, users would run setup.py install
or setup.py install --magic-doer=/path/to/executable
. If they used the second option, I’d set a variable somewhere in the code, and go from there.
Is this possible with Python's setuptools
? If so, how do I do it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看来你可以...阅读这个< /a>.
文章摘录:
It seems you can... read this.
Extract from article: