1 """
2 The Grizzled Utility Library is a general-purpose Python library with
3 a variety of different modules and packages. It's roughly organized into
4 subpackages that group different kinds of utility functions and classes.
5 """
6
7 __docformat__ = "restructuredtext en"
8
9 __version__ = '1.0.3'
10 __author__ = 'Brian M. Clapper'
11 __email__ = 'bmc@clapper.org'
12 __url__ = 'http://software.clapper.org/grizzled-python/'
13 __license__ = 'BSD license'
14 __title__ = 'The Grizzled Python Utility Library'
15
16
17
18 version = __version__
19 author = __author__
20 email = __email__
21 url = __url__
22 license = __license__
23 title = __title__
24