Home | Trees | Indices | Help |
|
---|
|
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.5) 13 # Project : Cedar Backup, release 2 14 # Revision : $Id: release.py 1074 2014-10-03 17:55:34Z 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-2011,2013,2014" 37 VERSION = "2.23.3" 38 DATE = "03 Oct 2014" 39 URL = "http://cedar-backup.sourceforge.net/" 40
Home | Trees | Indices | Help |
|
---|
Generated by Epydoc 3.0.1 on Fri Oct 3 13:22:25 2014 | http://epydoc.sourceforge.net |