setup.py
author Pascal Volk <neverseen@users.sourceforge.net>
Wed, 02 Sep 2009 20:30:16 +0000
changeset 139 7f6911bd11cd
parent 117 c96b5768c76d
child 148 e574f5dedb60
permissions -rw-r--r--
Added the French translation to the repository. Many thanks to Dimitri Duc from the Translation Project for the work.

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

import os
from distutils.core import setup

VERSION = '0.5.1'

long_description = """
vmm, a virtual mail manager, is a command line tool for
administrators/postmasters to manage (alias-)domains, accounts,
aliases and relocated users.
It is designed for Dovecot and Postfix with a PostgreSQL backend.
"""

# 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.ext',
          'VirtualMailManager.constants'],
      author='Pascal Volk',
      author_email='p.volk@veb-it.de',
      license='BSD License',
      url='http://vmm.localdomain.org/',
      download_url='http://sf.net/projects/vmm/files/',
      platforms=['freebsd7', 'linux2', 'openbsd4'],
      classifiers=[
          'Development Status :: 4 - Beta',
          'Development Status :: 5 - Production/Stable',
          'Environment :: Console',
          'Intended Audience :: System Administrators',
          'License :: OSI Approved :: BSD License',
          'Natural Language :: English',
          'Natural Language :: French',
          'Natural Language :: German',
          'Operating System :: POSIX',
          'Operating System :: POSIX :: BSD',
          'Operating System :: POSIX :: Linux',
          'Operating System :: POSIX :: Other',
          'Programming Language :: Python',
          'Topic :: Communications :: Email',
          'Topic :: System :: Systems Administration',
          'Topic :: Utilities'
      ],
      requires=['pyPgSQL']
      )