Change my email address from drexel.edu to tremily.us.
[update-copyright.git] / update_copyright / __init__.py
1 # Copyright (C) 2012 W. Trevor King
2 #
3 # This file is part of update-copyright.
4 #
5 # update-copyright is free software: you can redistribute it and/or
6 # modify it under the terms of the GNU General Public License as
7 # published by the Free Software Foundation, either version 3 of the
8 # License, or (at your option) any later version.
9 #
10 # update-copyright is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13 # General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with update-copyright.  If not, see
17 # <http://www.gnu.org/licenses/>.
18
19 """Automatically update copyright boilerplate.
20
21 This package is adapted from a script written for `Bugs
22 Everywhere`_. and later modified for `Hooke`_ before returning to
23 `Bugs Everywhere`_.  I finally gave up on maintaining separate
24 versions, so here it is as a stand-alone package.
25
26 .. _Bugs Everywhere: http://bugseverywhere.org/
27 .. _Hooke: http://code.google.com/p/hooke/
28 """
29
30 from .log import get_basic_logger as _get_basic_logger
31
32
33 __version__ = '0.4'
34
35
36 LOG = _get_basic_logger(name='update-copyright')