forked from Supervisor/superlance
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
86 lines (78 loc) · 3 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
##############################################################################
#
# Copyright (c) 2008-2013 Agendaless Consulting and Contributors.
# All Rights Reserved.
#
# This software is subject to the provisions of the BSD-like license at
# http://www.repoze.org/LICENSE.txt. A copy of the license should accompany
# this distribution. THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL
# EXPRESS OR IMPLIED WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO,
# THE IMPLIED WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND
# FITNESS FOR A PARTICULAR PURPOSE
#
##############################################################################
import os
import sys
py_version = sys.version_info[:2]
if py_version < (2, 6):
raise RuntimeError('On Python 2, superlance requires Python 2.6 or later')
elif (3, 0) < py_version < (3, 2):
raise RuntimeError('On Python 3, superlance requires Python 3.2 or later')
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
try:
README = open(os.path.join(here, 'README.rst')).read()
except (IOError, OSError):
README = ''
try:
CHANGES = open(os.path.join(here, 'CHANGES.txt')).read()
except (IOError, OSError):
CHANGES = ''
tests_require = ['supervisor']
if py_version < (3, 3):
tests_require.append('mock')
setup(name='superlance',
version='1.1.0.dev0',
license='BSD-derived (http://www.repoze.org/LICENSE.txt)',
description='superlance plugins for supervisord',
long_description=README + '\n\n' + CHANGES,
classifiers=[
"Development Status :: 3 - Alpha",
'Environment :: No Input/Output (Daemon)',
'Intended Audience :: System Administrators',
'Natural Language :: English',
'Operating System :: POSIX',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: System :: Boot',
'Topic :: System :: Monitoring',
'Topic :: System :: Systems Administration',
],
author='Chris McDonough',
author_email='[email protected]',
url='https://github.com/Supervisor/superlance',
keywords = 'supervisor monitoring',
packages = find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=[
'supervisor',
],
tests_require=tests_require,
test_suite='superlance.tests',
entry_points = """\
[console_scripts]
httpok = superlance.httpok:main
crashsms = superlance.crashsms:main
crashmail = superlance.crashmail:main
crashmailbatch = superlance.crashmailbatch:main
fatalmailbatch = superlance.fatalmailbatch:main
memmon = superlance.memmon:main
"""
)