12345678910111213141516171819202122232425262728 |
- __revision__ = '$Id$'
- import sys
- import string
- version, extra = string.split(sys.version, ' ', 1)
- maj, minor = string.split(version, '.', 1)
- if not maj[0] >= '2' and minor[0] >= '4':
- msg = ("supervisor requires Python 2.4 or better, you are attempting to "
- "install it using version %s. Please install with a "
- "supported version" % version)
- from distutils.core import setup
- setup(
- name = 'supervisor',
- version = "0.1",
- description = ".",
- author = "Chris McDonough",
- author_email = "chrism@plope.com",
- maintainer = "Chris McDonough",
- maintainer_email = "chrism@plope.com",
- scripts=['supervisord', 'supervisorctl'],
- packages = ['supervisor', 'supervisor.medusa', 'supervisor.meld3'],
- package_dir = {'supervisor':'.'},
- package_data= {'supervisor':['ui/*.gif', 'ui/*.css', 'ui/*.html']},
- )
|