branch | v0.6.x |
changeset 316 | 31d8931dc535 |
parent 315 | 81bccfd14355 |
child 317 | d619e97a8f18 |
315:81bccfd14355 | 316:31d8931dc535 |
---|---|
1 # -*- coding: UTF-8 -*- |
|
2 # Copyright (c) 2007 - 2010, Pascal Volk |
|
3 # See COPYING for distribution information. |
|
4 |
|
5 """ |
|
6 VirtualMailManager.constants.version |
|
7 |
|
8 VirtualMailManager's versions information. |
|
9 """ |
|
10 |
|
11 __all__ = ['__author__', '__date__', '__version__'] |
|
12 AUTHOR = 'Pascal Volk <neverseen@users.sourceforge.net>' |
|
13 RELDATE = '2009-09-09' |
|
14 VERSION = '0.5.2' |
|
15 __author__ = AUTHOR |
|
16 __date__ = RELDATE |
|
17 __version__ = VERSION |