blob: 3c01d79ec4358c24aa5157fb4d146c0193be5cd7 [file] [log] [blame]
"""
The Grizzled Utility Library is a general-purpose Python library with
a variety of different modules and packages. It's roughly organized into
subpackages that group different kinds of utility functions and classes.
"""
__docformat__ = "restructuredtext en"
__version__ = '1.0'
__author__ = 'Brian M. Clapper'
__email__ = 'bmc@clapper.org'
__url__ = 'http://software.clapper.org/grizzled-python/'
__license__ = 'BSD license'
__title__ = 'The Grizzled Python Utility Library'
# Public stuff
version = __version__
author = __author__
email = __email__
url = __url__
license = __license__
title = __title__