cli: string fixes, use the major,minor version numbers same as CloudStack

<cloudstack major>.<cloudstack minor>.<cloudmonkey increment number>

Signed-off-by: Rohit Yadav <bhaisaab@apache.org>
This commit is contained in:
Rohit Yadav 2012-11-20 14:13:24 +05:30
parent 2a0d0104bd
commit 3b2e715888
3 changed files with 4 additions and 5 deletions

View File

@ -81,7 +81,7 @@ class CloudStackShell(cmd.Cmd):
for key in self.config_fields.keys():
setattr(self, key, self.config_fields[key])
config = self.write_config()
print "Welcome! Using `set` configure the necessary settings"
print "Welcome! Using `set` configure the necessary settings:"
print " ".join(sorted(self.config_fields.keys()))
print "For debugging, tail -f", self.log_file, "\n"

View File

@ -17,9 +17,8 @@
# under the License.
# Use following rules for versioning:
# <cli major version>.<cloudstack minor version>.<cloudstack major version>
# Example: For CloudStack 4.1.x, CLI version should be 0.1.4
__version__ = "0.0.4"
# <cloudstack major version>.<cloudstack minor version>.<cli increment>
__version__ = "4.0.0"
try:
import os

View File

@ -43,7 +43,7 @@ setup(
url = "http://incubator.apache.org/cloudstack",
description = "Command Line Interface for Apache CloudStack",
long_description = "cloudmonkey is a command line interface for Apache "
"CloudStack powered by CloudStack Marvin testclient",
"CloudStack powered by CloudStack Marvin",
platforms = ("Any",),
license = 'ASL 2.0',
packages = find_packages(),