#!/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.2'
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 :: Dutch',
'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']
)