-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
57 lines (51 loc) · 1.74 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
import os
import sys
if sys.version_info[:2] < (2, 4) or sys.version_info[0] > 2:
msg = ("SuperlanceAdds requires Python 2.4 or later but does not work on "
"any version of Python 3. You are using version %s. Please "
"install using a supported version." % sys.version)
sys.stderr.write(msg)
sys.exit(1)
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
try:
README = open(os.path.join(here, 'README.txt')).read()
except (IOError, OSError):
README = ''
setup(name='superlanceadds',
version='0.1.1-dev',
license='BSD-derived (http://www.repoze.org/LICENSE.txt)',
description='moar superlance plugins for supervisord',
long_description=README,
classifiers=[
"Development Status :: 3 - Alpha",
'Environment :: No Input/Output (Daemon)',
'Intended Audience :: System Administrators',
'Natural Language :: English',
'Operating System :: POSIX',
'Topic :: System :: Boot',
'Topic :: System :: Monitoring',
'Topic :: System :: Systems Administration',
],
author='Rob Ottaway',
author_email='[email protected]',
maintainer = "Rob Ottaway",
maintainer_email = "[email protected]",
url='http://github.org/robottaway',
keywords = 'supervisor monitoring aws ec2',
packages = find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=[
'supervisor',
],
tests_require=[
'supervisor',
'mock',
],
test_suite='superlanceadds.tests',
entry_points = """\
[console_scripts]
sesmail = superlanceadds.sesmail:main
"""
)