cloudmonkey: fix description for legacy cloudmonkey for pypi website

Signed-off-by: Rohit Yadav <rohit.yadav@shapeblue.com>
diff --git a/cloudmonkey/cloudmonkey.py b/cloudmonkey/cloudmonkey.py
index e8da457..46396a6 100644
--- a/cloudmonkey/cloudmonkey.py
+++ b/cloudmonkey/cloudmonkey.py
@@ -81,8 +81,10 @@
 
 
 class CloudMonkeyShell(cmd.Cmd, object):
-    intro = ("☁ Apache CloudStack 🐵 cloudmonkey " + __version__ +
-             ". Type help or ? to list commands.\n")
+    intro = ("☁ Apache CloudStack 🐵 (legacy) cloudmonkey " + __version__ + ".\n" +
+             "Please switch to latest Go-based version https://github.com/apache/cloudstack-cloudmonkey/releases.\n" +
+             "For usage see https://github.com/apache/cloudstack-cloudmonkey/wiki.\n" +
+             "Type help or ? to list commands.\n")
     ruler = "="
     config_options = []
     profile_names = []
diff --git a/setup.py b/setup.py
index f3912fb..099da64 100644
--- a/setup.py
+++ b/setup.py
@@ -55,14 +55,14 @@
 
 setup(
     name = 'cloudmonkey',
-    version = __version__,
+    version = '5.3.3.1',
     author = __project__,
     author_email = __projectemail__,
     maintainer = __maintainer__,
     maintainer_email = __maintaineremail__,
     url = __projecturl__,
     description = __description__,
-    long_description = "cloudmonkey is a CLI for Apache CloudStack",
+    long_description = "Legacy cloudmonkey is a CLI for Apache CloudStack. Please use the latest Go-based CLI from https://github.com/apache/cloudstack-cloudmonkey/releases. Refer to wiki for documentation https://github.com/apache/cloudstack-cloudmonkey/wiki",
     platforms = ("Any",),
     license = 'ASL 2.0',
     packages = find_packages(),