#!/usr/bin/python -tt
#=======================================================================
#                        General Documentation

"""Version number and additional information for package.
"""

#-----------------------------------------------------------------------
#                       Additional Documentation
#
# RCS Revision Code:
#   $Id: package_version.py,v 1.1.1.1 2005/01/13 00:15:42 jlin Exp $
#
# Modification History:
# - 06 Jan 2005:  Original by Johnny Lin, Computation Institute,
#   University of Chicago.  Passed passably reasonable tests.
#
# Notes:
# - Written for Python 2.2.
# - No import statements in module.
#
# Copyright (c) 2004-2005 by Johnny Lin.  For licensing, distribution 
# conditions, contact information, and additional documentation see
# the URL http://geosci.uchicago.edu/csc/modelutil/doc/.
#=======================================================================

version = '0.1.1'
author  = 'Johnny Lin <http://www.johnny-lin.com/>'
date    = '12 Jan 2005'
credits = 'Thanks to the CSC group at the University of Chicago.'




# ===== end file =====
