forked from Jahaja/psdash
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
41 lines (40 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
36
37
38
39
40
41
# coding=utf-8
from psdash import __version__
from setuptools import setup, find_packages
setup(
name="psdash",
version=__version__,
description="Linux system information web dashboard",
long_description="psdash is a system information web dashboard for linux using data mainly served by psutil",
classifiers=[
"Topic :: System :: Monitoring",
"Topic :: System :: Logging",
"Topic :: System :: Networking :: Monitoring",
"Development Status :: 4 - Beta",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"License :: Public Domain",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators"
],
keywords="linux web dashboard",
author="Joakim Hamrén",
author_email="[email protected]",
url="https://github.com/Jahaja/psdash",
license="CC0",
packages=find_packages(exclude=["tests"]),
include_package_data=True,
zip_safe=False,
install_requires=[
"Flask==0.10.1",
"psutil==1.2.1",
"argparse==1.2.1",
"glob2==0.4.1"
],
test_suite="tests",
entry_points={
"console_scripts": [
"psdash = psdash.web:main"
]
}
)