Convert update-copyright.py to a more modular framework.
[update-copyright.git] / update_copyright / __init__.py
1 # Copyright
2
3 """Automatically update copyright boilerplate.
4
5 This package is adapted from a script written for `Bugs
6 Everywhere`_. and later modified for `Hooke`_ before returning to
7 `Bugs Everywhere`_.  I finally gave up on maintaining separate
8 versions, so here it is as a stand-alone package.
9
10 .. _Bugs Everywhere: http://bugseverywhere.org/
11 .. _Hooke: http://code.google.com/p/hooke/
12 """
13
14 from .log import get_basic_logger as _get_basic_logger
15
16
17 __version__ = '0.2'
18
19
20 LOG = _get_basic_logger(name='update-copyright')