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 (>= 2.7) 
13  # Project  : Cedar Backup, release 2 
14  # Purpose  : Provides location to maintain release information. 
15  # 
16  # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # 
17   
18  """ 
19  Provides location to maintain version information. 
20   
21  @sort: AUTHOR, EMAIL, COPYRIGHT, VERSION, DATE, URL 
22   
23  @var AUTHOR: Author of software. 
24  @var EMAIL: Email address of author. 
25  @var COPYRIGHT: Copyright date. 
26  @var VERSION: Software version. 
27  @var DATE: Software release date. 
28  @var URL: URL of Cedar Backup webpage. 
29   
30  @author: Kenneth J. Pronovici <pronovic@ieee.org> 
31  """ 
32   
33  AUTHOR      = "Kenneth J. Pronovici" 
34  EMAIL       = "pronovic@ieee.org" 
35  COPYRIGHT   = "2004-2011,2013-2017" 
36  VERSION     = "2.27.0" 
37  DATE        = "11 Nov 2017" 
38  URL         = "https://bitbucket.org/cedarsolutions/cedar-backup2" 
39