Temporary fix to hooke/driver/wtk.py now that data_logger is deprecated.
[hooke.git] / hooke / __init__.py
index 283d0dd2955b6ee28a46a9d04402a32bbe532752..d6358e7635dcc9dcf48152722ef8f23b4f2b6c27 100644 (file)
@@ -1,4 +1,20 @@
-# COPYRIGHT
+# Copyright (C) 2010-2011 W. Trevor King <wking@drexel.edu>
+#
+# 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 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
+# <http://www.gnu.org/licenses/>.
 
 """The hooke module does all the legwork for Hooke_.
 
@@ -10,8 +26,16 @@ The available submodules are:
 * :mod:`hooke.config`
 * :mod:`hooke.compat`
 """
+try:
+    from .license import LICENSE as __license__
+except ImportError, e:
+    import logging
+    logging.warn('could not load LICENSE from hooke.license')
+    __license__ = 'All rights reserved.' 
 
-__version__ = (0, 9, 0, 'devel', None, 'Kenzo')
+from .util import yaml  # extend YAML to parse Hooke-specific items.
+
+__version__ = (1, 0, 0, 'alpha', None, 'Ninken')
 """Version tuple::
 
     (major, minor, release, type, patch, name)