4 # See COPYING for distribution information. |
4 # See COPYING for distribution information. |
5 |
5 |
6 import os |
6 import os |
7 from distutils.core import setup |
7 from distutils.core import setup |
8 |
8 |
9 from VirtualMailManager.constants.VERSION import VERSION |
9 VERSION = '0.5.1' |
10 |
10 |
11 long_description = """ |
11 long_description = """ |
12 Virtual Mail Manager is a command line tool for |
12 vmm, a virtual mail manager, is a command line tool for |
13 administrators/postmasters to manage domains, accounts and aliases. |
13 administrators/postmasters to manage (alias-)domains, accounts, |
14 It's designed for Dovecot and Postfix with a PostgreSQL backend. |
14 aliases and relocated users. |
|
15 It is designed for Dovecot and Postfix with a PostgreSQL backend. |
15 """ |
16 """ |
16 |
17 |
17 # remove existing MANIFEST |
18 # remove existing MANIFEST |
18 if os.path.exists('MANIFEST'): |
19 if os.path.exists('MANIFEST'): |
19 os.remove('MANIFEST') |
20 os.remove('MANIFEST') |
27 'VirtualMailManager.constants'], |
28 'VirtualMailManager.constants'], |
28 author='Pascal Volk', |
29 author='Pascal Volk', |
29 author_email='p.volk@veb-it.de', |
30 author_email='p.volk@veb-it.de', |
30 license='BSD License', |
31 license='BSD License', |
31 url='http://vmm.localdomain.org/', |
32 url='http://vmm.localdomain.org/', |
32 download_url='http://sf.net/project/showfiles.php?group_id=213727', |
33 download_url='http://sf.net/projects/vmm/files/', |
33 platforms=['linux2', 'openbsd4'], |
34 platforms=['freebsd7', 'linux2', 'openbsd4'], |
34 classifiers=[ |
35 classifiers=[ |
35 'Development Status :: 4 - Beta', |
36 'Development Status :: 4 - Beta', |
36 'Development Status :: 5 - Production/Stable', |
37 'Development Status :: 5 - Production/Stable', |
37 'Environment :: Console', |
38 'Environment :: Console', |
38 'Intended Audience :: System Administrators', |
39 'Intended Audience :: System Administrators', |