-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
96 lines (91 loc) · 3.79 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
import sys
import os
from pyspectator_tornado import version_str
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
def main():
# Check python version
if sys.version_info < (3, 0, 0):
sys.stderr.write(
'You need python 3.0 or later to run this script!' + os.linesep
)
exit(1)
# Describe installer
setup(
name='pyspectator_tornado',
license='BSD',
version=version_str,
author='Maxim Grischuk',
author_email='[email protected]',
maintainer='Maxim Grischuk',
maintainer_email='[email protected]',
url='https://github.com/uzumaxy/pyspectator_tornado',
download_url='https://github.com/uzumaxy/pyspectator_tornado/releases',
packages=['pyspectator_tornado'],
package_data={
'pyspectator_tornado': ['LICENSE', 'README.rst']
},
description='pyspectator_tornado is a web-monitoring tool ported on'
'Tornado with pyspectator as a main monitoring module.',
long_description=open('README.rst').read(),
install_requires=['pyspectator >= 1.1.2', 'tornado >= 3.2.0'],
keywords=[
'example',
'pyspectator', 'spectator', 'pyspectator_tornado',
'monitoring', 'tool',
'statistic', 'stats',
'computer', 'pc', 'server',
'mem', 'memory',
'network', 'net', 'io',
'processor', 'cpu',
'hdd', 'hard', 'disk', 'drive',
'web', 'tornado', 'www'
],
platforms='Platform Independent',
scripts=['start.py'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Environment :: MacOS X',
'Environment :: Win32 (MS Windows)',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows :: Windows 7',
'Operating System :: Microsoft :: Windows :: Windows NT/2000',
'Operating System :: Microsoft :: Windows :: Windows Server 2003',
'Operating System :: Microsoft :: Windows :: Windows Server 2008',
'Operating System :: Microsoft :: Windows :: Windows Vista',
'Operating System :: Microsoft :: Windows :: Windows XP',
'Operating System :: Microsoft',
'Operating System :: OS Independent',
'Operating System :: POSIX :: BSD :: FreeBSD',
'Operating System :: POSIX :: Linux',
'Operating System :: POSIX :: SunOS/Solaris',
'Operating System :: POSIX',
'Programming Language :: JavaScript',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.0',
'Programming Language :: Python :: 3.1',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python',
'Topic :: Office/Business',
'Topic :: System :: Benchmark',
'Topic :: System :: Hardware',
'Topic :: System :: Monitoring',
'Topic :: System :: Networking :: Monitoring',
'Topic :: System :: Networking',
'Topic :: System :: Systems Administration'
],
)
if __name__ == '__main__':
main()