Skip to content

Commit 3169f6f

Browse files
committed
cloudmonkey: fix description for legacy cloudmonkey for pypi website
Signed-off-by: Rohit Yadav <rohit.yadav@shapeblue.com>
1 parent db74764 commit 3169f6f

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

cloudmonkey/cloudmonkey.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,8 +81,10 @@
8181

8282

8383
class CloudMonkeyShell(cmd.Cmd, object):
84-
intro = ("☁ Apache CloudStack 🐵 cloudmonkey " + __version__ +
85-
". Type help or ? to list commands.\n")
84+
intro = ("☁ Apache CloudStack 🐵 (legacy) cloudmonkey " + __version__ + ".\n" +
85+
"Please switch to latest Go-based version https://github.com/apache/cloudstack-cloudmonkey/releases.\n" +
86+
"For usage see https://github.com/apache/cloudstack-cloudmonkey/wiki.\n" +
87+
"Type help or ? to list commands.\n")
8688
ruler = "="
8789
config_options = []
8890
profile_names = []

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,14 +55,14 @@
5555

5656
setup(
5757
name = 'cloudmonkey',
58-
version = __version__,
58+
version = '5.3.3.1',
5959
author = __project__,
6060
author_email = __projectemail__,
6161
maintainer = __maintainer__,
6262
maintainer_email = __maintaineremail__,
6363
url = __projecturl__,
6464
description = __description__,
65-
long_description = "cloudmonkey is a CLI for Apache CloudStack",
65+
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",
6666
platforms = ("Any",),
6767
license = 'ASL 2.0',
6868
packages = find_packages(),

0 commit comments

Comments
 (0)