5 # $Id$ |
5 # $Id$ |
6 |
6 |
7 import os |
7 import os |
8 from distutils.core import setup |
8 from distutils.core import setup |
9 |
9 |
10 VERSION = '0.3' |
10 VERSION = '0.3.1' |
11 |
11 |
12 long_description = """ |
12 long_description = """ |
13 Virtual Mail Manager is a command line tool for administrators/postmasters to |
13 Virtual Mail Manager is a command line tool for administrators/postmasters to |
14 manage domains, accounts and aliases. It's designed for Dovecot and Postfix |
14 manage domains, accounts and aliases. It's designed for Dovecot and Postfix |
15 with a PostgreSQL backend. |
15 with a PostgreSQL backend. |
25 setup(name='VirtualMailManager', |
25 setup(name='VirtualMailManager', |
26 version=VERSION, |
26 version=VERSION, |
27 description='Tool to manage mail domains/accounts/aliases for Dovecot and Postfix', |
27 description='Tool to manage mail domains/accounts/aliases for Dovecot and Postfix', |
28 long_description=long_description, |
28 long_description=long_description, |
29 packages=['VirtualMailManager', 'VirtualMailManager.constants'], |
29 packages=['VirtualMailManager', 'VirtualMailManager.constants'], |
30 # data_files=[(libdir, [ |
|
31 # 'VirtualMailManager/Account.py', |
|
32 # 'VirtualMailManager/Alias.py', |
|
33 # 'VirtualMailManager/Config.py', |
|
34 # 'VirtualMailManager/Domain.py', |
|
35 # 'VirtualMailManager/Exceptions.py', |
|
36 # 'VirtualMailManager/__init__.py', |
|
37 # 'VirtualMailManager/VirtualMailManager.py'] |
|
38 # ), |
|
39 # (libdir+'/constants', [ |
|
40 # 'VirtualMailManager/constants/ERROR.py', |
|
41 # 'VirtualMailManager/constants/EXIT.py', |
|
42 # 'VirtualMailManager/constants/__init__.py'] |
|
43 # ) |
|
44 # ], |
|
45 author='Pascal Volk', |
30 author='Pascal Volk', |
46 author_email='p.volk@veb-it.de', |
31 author_email='p.volk@veb-it.de', |
47 license='BSD License', |
32 license='BSD License', |
48 url='http://vmm.sf.net/', |
33 url='http://vmm.sf.net/', |
49 download_url='http://sourceforge.net/project/showfiles.php?group_id=213727', |
34 download_url='http://sf.net/project/showfiles.php?group_id=213727', |
50 classifiers=[ |
35 classifiers=[ |
51 'Development Status :: 4 - Beta', |
36 'Development Status :: 4 - Beta', |
52 'Development Status :: 5 - Production/Stable', |
37 'Development Status :: 5 - Production/Stable', |
53 'Environment :: Console', |
38 'Environment :: Console', |
54 'Intended Audience :: System Administrators', |
39 'Intended Audience :: System Administrators', |