Ai
1 Star 0 Fork 0

OpenFound/python-linux-procfs

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
setup.py 787 Bytes
一键复制 编辑 原始数据 按行查看 历史
weizhixiang 提交于 2025-05-12 10:06 +08:00 . init: Init from openfound
#!/usr/bin/python3
import os
from os.path import isfile, join
from distutils.sysconfig import get_python_lib
from setuptools import setup
if isfile("MANIFEST"):
os.unlink("MANIFEST")
# Get PYTHONLIB with no prefix so --prefix installs work.
PYTHONLIB = join(get_python_lib(standard_lib=1, prefix=''), 'site-packages')
setup(name="python-linux-procfs",
version = "0.7.0",
description = "Linux /proc abstraction classes",
author = "Arnaldo Carvalho de Melo",
author_email = "acme@redhat.com",
url = "http://userweb.kernel.org/python-linux-procfs",
license = "GPLv2",
long_description =
"""\
Abstractions to extract information from the Linux kernel /proc files.
""",
packages = ["procfs"],
scripts = ['pflags'],
install_requires = ['six'],
)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/foundos_1/python-linux-procfs.git
git@gitee.com:foundos_1/python-linux-procfs.git
foundos_1
python-linux-procfs
python-linux-procfs
master

搜索帮助