setup.py
author Pascal Volk <neverseen@users.sourceforge.net>
Tue, 08 Jan 2008 21:35:40 +0000
changeset 2 9b39f828aa8a
parent 0 bb0aa2102206
child 4 f3c30b7421b9
permissions -rw-r--r--
* 'VirtualMailManager/Exceptions.py' - VMMNotRootException.__init__() calls parent CTor * 'VirtualMailManager/VirtualMailManager.py' - activated check for missing sections/options * 'VirtualMailManager/constants/ERROR.py' - added CONF_* constants from EXIT.py - renumbered * 'VirtualMailManager/constants/EXIT.py' - moved CONF_* constants to ERROR.py * 'VirtualMailManager/Config.py' - implemented VMMConfig.check() - some code cleanups * 'vmm' - some code cleanups

#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Copyright 2007-2008 VEB IT
# See COPYING for distribution information.
# $Id$

import os
from distutils.core import setup

VERSION = '0.3.1'

long_description = """
Virtual Mail Manager is a command line tool for administrators/postmasters to
manage domains, accounts and aliases. It's designed for Dovecot and Postfix
with a PostgreSQL backend.
"""

libdir = '/usr/local/lib'

# remove existing MANIFEST
if os.path.exists('MANIFEST'):
    os.remove('MANIFEST')


setup(name='VirtualMailManager',
      version=VERSION,
      description='Tool to manage mail domains/accounts/aliases for Dovecot and Postfix',
      long_description=long_description,
      packages=['VirtualMailManager', 'VirtualMailManager.constants'],
      author='Pascal Volk',
      author_email='p.volk@veb-it.de',
      license='BSD License',
      url='http://vmm.sf.net/',
      download_url='http://sf.net/project/showfiles.php?group_id=213727',
      classifiers=[
          'Development Status :: 4 - Beta',
          'Development Status :: 5 - Production/Stable',
          'Environment :: Console',
          'Intended Audience :: System Administrators',
          'License :: OSI Approved :: BSD License',
          'Natural Language :: English',
          'Operating System :: POSIX',
          'Operating System :: POSIX :: BSD',
          'Operating System :: POSIX :: Linux',
          'Operating System :: POSIX :: Other',
          'Programming Language :: Python',
          'Topic :: Communications :: Email :: Mail Transport Agents',
          'Topic :: Communications :: Email :: Post-Office :: IMAP',
          'Topic :: Communications :: Email :: Post-Office :: POP3'
      ],
      requires=['pyPgSQL']
      )