Package CedarBackup2 :: Module release
[hide private]
[frames] | no frames]

Source Code for Module CedarBackup2.release

 1  # -*- coding: iso-8859-1 -*- 
 2  # vim: set ft=python ts=3 sw=3 expandtab: 
 3  # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # 
 4  # 
 5  #              C E D A R 
 6  #          S O L U T I O N S       "Software done right." 
 7  #           S O F T W A R E 
 8  # 
 9  # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # 
10  # 
11  # Author   : Kenneth J. Pronovici <pronovic@ieee.org> 
12  # Language : Python (>= 2.3) 
13  # Project  : Cedar Backup, release 2 
14  # Revision : $Id: release.py 1233 2007-09-20 03:07:42Z pronovic $ 
15  # Purpose  : Provides location to maintain release information. 
16  # 
17  # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # 
18   
19  """ 
20  Provides location to maintain version information. 
21   
22  @sort: AUTHOR, EMAIL, COPYRIGHT, VERSION, DATE, URL 
23   
24  @var AUTHOR: Author of software. 
25  @var EMAIL: Email address of author. 
26  @var COPYRIGHT: Copyright date. 
27  @var VERSION: Software version. 
28  @var DATE: Software release date. 
29  @var URL: URL of Cedar Backup webpage. 
30   
31  @author: Kenneth J. Pronovici <pronovic@ieee.org> 
32  """ 
33   
34  AUTHOR      = "Kenneth J. Pronovici" 
35  EMAIL       = "pronovic@ieee.org" 
36  COPYRIGHT   = "2004-2007" 
37  VERSION     = "2.14.0" 
38  DATE        = "19 Sep 2007" 
39  URL         = "http://cedar-solutions.com/software/cedar-backup" 
40