Package qtcm :: Module package_version
[hide private]
[frames] | no frames]

Source Code for Module qtcm.package_version

 1  #!/usr/bin/python -tt 
 2  #======================================================================= 
 3  #                        General Documentation 
 4   
 5  """Version number and additional information for package. 
 6  """ 
 7   
 8  #----------------------------------------------------------------------- 
 9  #                       Additional Documentation 
10  # 
11  # RCS Revision Code: 
12  #   $Id: package_version.py 57 2008-09-12 17:27:04Z jlin $ 
13  # 
14  # Modification History: 
15  # - 04 Jun 2004:  Original by Johnny Lin, Computation Institute, 
16  #   University of Chicago.  Passed passably reasonable tests. 
17  # 
18  # Notes: 
19  # - Written for Python 2.4. 
20  # - No import statements in module. 
21  # 
22  # Copyright (c) 2004-2008 by Johnny Lin.  For licensing, distribution  
23  # conditions, contact information, and additional documentation see 
24  # the URL http://www.johnny-lin.com/py_pkgs/qtcm/doc/. 
25  #======================================================================= 
26   
27  version = '0.1.2' 
28  author  = 'Johnny Lin' 
29  date    = 'September 12, 2008' 
30  credits = 'http://www.johnny-lin.com/py_pkgs/qtcm/' 
31   
32   
33   
34   
35  # ===== end file ===== 
36