-
Notifications
You must be signed in to change notification settings - Fork 325
/
setup.py
45 lines (44 loc) · 1.34 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
42
43
44
45
# 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='joakim.hamren@gmail.com',
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==2.1.3',
'glob2==0.4.1',
'gevent==1.0.2',
'zerorpc==0.4.4',
'netifaces==0.10.4',
'argparse'
],
test_suite='tests',
tests_require=['unittest2'],
entry_points={
'console_scripts': [
'psdash = psdash.run:main'
]
}
)