-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·28 lines (24 loc) · 773 Bytes
/
setup.py
File metadata and controls
executable file
·28 lines (24 loc) · 773 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/usr/bin/python3
import os
from distutils.sysconfig import get_python_lib
from os.path import isfile, join
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"],
)