1 Star 0 Fork 0

anxingle/nvitop

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
setup.py 1015 Bytes
一键复制 编辑 原始数据 按行查看 历史
#!/usr/bin/env python3
# pylint: disable=missing-module-docstring
import pathlib
import sys
from setuptools import setup
VERSION_FILE = pathlib.Path(__file__).absolute().parent / 'nvitop' / 'version.py'
try:
from nvitop import version
except ImportError:
sys.path.insert(0, str(VERSION_FILE.parent))
import version
VERSION_CONTENT = None
if not version.__release__:
import re
VERSION_CONTENT = VERSION_FILE.read_text(encoding='UTF-8')
VERSION_FILE.write_text(data=re.sub(r"""__version__\s*=\s*('[^']+'|"[^"]+")""",
r"__version__ = '{}'".format(version.__version__),
string=VERSION_CONTENT),
encoding='UTF-8')
setup(
name='nvitop',
version=version.__version__,
description=version.__doc__,
author=version.__author__,
author_email=version.__email__,
)
if VERSION_CONTENT is not None:
VERSION_FILE.write_text(data=VERSION_CONTENT, encoding='UTF-8')
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/anxingle/nvitop2.git
git@gitee.com:anxingle/nvitop2.git
anxingle
nvitop2
nvitop
main

搜索帮助