]> code.delx.au - offlineimap/blob - head/offlineimap/version.py
/head: changeset 77
[offlineimap] / head / offlineimap / version.py
1 productname = 'OfflineIMAP'
2 versionstr = "2.0.0"
3
4 versionlist = versionstr.split(".")
5 major = versionlist[0]
6 minor = versionlist[1]
7 patch = versionlist[2]
8 copyright = "Copyright (C) 2002 John Goerzen"
9 author = "John Goerzen"
10 author_email = "jgoerzen@complete.org"
11 description = "Disconnected Universal IMAP Mail Synchronization/Reader Support"
12
13 banner = """%(productname)s %(versionstr)s, %(copyright)s <%(author_email)s>
14 This software comes with ABSOLUTELY NO WARRANTY; see the file
15 COPYING for details. This is free software, and you are welcome
16 to distribute it under the conditions laid out in COPYING.""" % locals()
17
18 homepage = "http://www.quux.org/devel/offlineimap"
19 homegopher = "gopher://quux.org/1/devel/offlineimap"
20 license = """Copyright (C) 2002 John Goerzen <jgoerzen@complete.org>
21
22 This program is free software; you can redistribute it and/or modify
23 it under the terms of the GNU General Public License as published by
24 the Free Software Foundation; either version 2 of the License, or
25 (at your option) any later version.
26
27 This program is distributed in the hope that it will be useful,
28 but WITHOUT ANY WARRANTY; without even the implied warranty of
29 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
30 GNU General Public License for more details.
31
32 You should have received a copy of the GNU General Public License
33 along with this program; if not, write to the Free Software
34 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA"""