[fix] change in versioning: store __version__ in __init__.py
diff --git a/erpnext/__init__.py b/erpnext/__init__.py
index 60bec4f..3ef27a4 100644
--- a/erpnext/__init__.py
+++ b/erpnext/__init__.py
@@ -1 +1,4 @@
-from erpnext.__version__ import __version__
+# -*- coding: utf-8 -*-
+from __future__ import unicode_literals
+
+__version__ = '6.27.22'