X-Git-Url: http://git.tremily.us/?a=blobdiff_plain;f=hooke%2F__init__.py;h=a220d8b26cff0ab8a580a8c7ba6317bf4d4d5331;hb=eeb1eade49c685a862cb8f65046efa62711d6f92;hp=c8b1253e99422cfba8f52d269855c8a81b50942c;hpb=bf293ebc6a54c65097f3c10fe716d90d38ac317e;p=hooke.git diff --git a/hooke/__init__.py b/hooke/__init__.py index c8b1253..a220d8b 100644 --- a/hooke/__init__.py +++ b/hooke/__init__.py @@ -2,15 +2,15 @@ # # This file is part of Hooke. # -# Hooke is free software: you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation, either -# version 3 of the License, or (at your option) any later version. +# Hooke is free software: you can redistribute it and/or modify it +# under the terms of the GNU Lesser General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. # -# Hooke is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Lesser General Public License for more details. +# Hooke is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY +# or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General +# Public License for more details. # # You should have received a copy of the GNU Lesser General Public # License along with Hooke. If not, see @@ -30,11 +30,12 @@ try: from .license import LICENSE as __license__ except ImportError, e: import logging - logging.warn('Could not load LICENSE from hooke.license') + logging.warn('could not load LICENSE from hooke.license') __license__ = 'All rights reserved.' +from .util import yaml # extend YAML to parse Hooke-specific items. -__version__ = (0, 9, 0, 'devel', None, 'Kenzo') +__version__ = (1, 0, 0, 'alpha', None, 'Ninken') """Version tuple:: (major, minor, release, type, patch, name)