我有一个用 distutils 构建的 python 包,我在我的设置函数中使用版本参数,就像这样(除了名称和版本之外还有其他参数):
setup(name='example_module', version='0.1.2', ...)
我可以example_module
通过调用从包中的模块中提取版本号:
import pkg_resources
version = pkg_resources.require('example_module')[0].version
如何从此发行版之外的 python 脚本访问此版本号?