-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
35 lines (31 loc) · 1.23 KB
/
setup.py
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
29
30
31
32
33
34
35
# -*- coding: UTF8 -*-
from setuptools import setup
from os.path import abspath, dirname, join
from statux import __version__
with open(join(abspath(dirname(__file__)), "README.rst"), 'r') as readme:
long_description = readme.read()
setup(
name="statux",
version=__version__,
description="Python module for hardware and system monitoring",
license="GPLv3",
long_description=long_description,
author='Ivan Rincon',
author_email='[email protected]',
url="https://github.com/Arg0s1080/statux",
keywords="linux stats monitoring sensors proc sys battery cpu disk net ram hardware "
"cpuinfo diskstats meminfo mounts partitions power_supply thermal temp",
packages=["statux"],
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Benchmark",
"Topic :: System :: Hardware",
"Topic :: System :: Networking :: Monitoring",
"Topic :: System :: Operating System",
"Topic :: Utilities"
]
)