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 97 98 99 100 101 102
|
##############################################################################
#
# Copyright (c) 2007 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
#
##############################################################################
__revision__ = '$Id: setup.py 2118 2010-01-26 12:33:46Z iko $'
import urllib
import urllib2
if not hasattr(urllib2, 'splituser'):
# setuptools wants to import this from urllib2 but it's not
# in there in Python 2.3.3, so we just alias it.
urllib2.splituser = urllib.splituser
import os
import sys
if sys.version_info[:2] < (2, 3):
msg = ("supervisor requires Python 2.3 or better, you are attempting to "
"install it using version %s. Please install with a "
"supported version" % sys.version)
sys.stderr.write(msg)
sys.exit(1)
requires = ['meld3 >= 0.6.5']
if sys.version_info[:2] < (2, 5):
# for meld3 (it's a distutils package)
requires.append('elementtree')
from setuptools import setup, find_packages
here = os.path.abspath(os.path.normpath(os.path.dirname(__file__)))
DESC = """\
Supervisor is a client/server system that allows its users to
control a number of processes on UNIX-like operating systems. """
CLASSIFIERS = [
'Development Status :: 5 - Production/Stable',
'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',
]
version_txt = os.path.join(here, 'src/supervisor/version.txt')
supervisor_version = open(version_txt).read().strip()
dist = setup(
name = 'supervisor',
version = supervisor_version,
license = 'BSD-derived (http://www.repoze.org/LICENSE.txt)',
url = 'http://supervisord.org/',
download_url = 'http://dist.supervisord.org/',
description = "A system for controlling process state under UNIX",
long_description= DESC,
classifiers = CLASSIFIERS,
author = "Chris McDonough",
author_email = "chrism@plope.com",
maintainer = "Chris McDonough",
maintainer_email = "chrism@plope.com",
package_dir = {'':'src'},
packages = find_packages(os.path.join(here, 'src')),
# put data files in egg 'doc' dir
data_files=[ ('doc', [
'README.txt',
'CHANGES.txt',
'TODO.txt',
'LICENSES.txt',
'COPYRIGHT.txt'
]
)],
install_requires = requires,
extras_require = {'iterparse':['cElementTree >= 1.0.2']},
tests_require = requires + ['mock >= 0.5.0'],
package_data = {
'' : [ 'ui/*.html', 'ui/images/*', 'ui/stylesheets/*', 'version.txt' ],
},
zip_safe = False,
test_suite = "supervisor.tests",
entry_points = {
'supervisor_rpc':['main = supervisor.rpcinterface:make_main_rpcinterface'],
'console_scripts': [
'supervisord = supervisor.supervisord:main',
'supervisorctl = supervisor.supervisorctl:main',
'echo_supervisord_conf = supervisor.confecho:main',
'pidproxy = supervisor.pidproxy:main',
],
},
)
|