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