summaryrefslogtreecommitdiff
path: root/happybase/__init__.py
diff options
context:
space:
mode:
authorTodd DeLuca <no-spam@todddeluca.com>2012-05-21 15:24:22 -0400
committerTodd DeLuca <no-spam@todddeluca.com>2012-05-21 15:24:22 -0400
commit5366974acea25ff25cd4c6ce85f6fcd42cf00795 (patch)
tree7d7db55e720f4f880bcdec1f3fe89379422c154a /happybase/__init__.py
parent63573cdaefe3a2b98ece87e19d9ceb18f00bc0d9 (diff)
downloadhappybase-5366974acea25ff25cd4c6ce85f6fcd42cf00795.tar.gz
Use happybase.version in __init__ to stay DRY.
Diffstat (limited to 'happybase/__init__.py')
-rw-r--r--happybase/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/happybase/__init__.py b/happybase/__init__.py
index bc58455..4ca4320 100644
--- a/happybase/__init__.py
+++ b/happybase/__init__.py
@@ -2,6 +2,6 @@
HappyBase, a pythonic interface for HBase using Thrift
"""
-__version__ = '0.1'
+from .version import __version__
from .api import *