python 首先使用setuptools_scm获取Python项目版本,然后使用pkg_resources

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 首先使用setuptools_scm获取Python项目版本,然后使用pkg_resources相关的知识,希望对你有一定的参考价值。

import pkg_resources
import setuptools_scm

package_name = "Package name goes here..."

try:
    # Try to get version number from repository
    VERSION = setuptools_scm.get_version()
except LookupError:
    # Not in repo, so try to get version number from pkg_resources
    try:
        VERSION = pkg_resources.get_distribution(package_name).version
    except pkg_resources.DistributionNotFound:
        # Not installed?
        VERSION = "Unknown"

以上是关于python 首先使用setuptools_scm获取Python项目版本,然后使用pkg_resources的主要内容,如果未能解决你的问题,请参考以下文章

ERROR: Command errored out with exit status 1一例

为啥 python 3.2 的 Python.h 必须首先与 Qt4 一起包含

首先安装vscode和配置python环境

如何让python等待“无”,首先运行事件循环

python去除excel水印

python如何输入矩阵