add escalator cli framework 19/24819/4
authorZhou Ya <zhou.ya@zte.com.cn>
Thu, 24 Nov 2016 05:57:31 +0000 (13:57 +0800)
committerZhou Ya <zhou.ya@zte.com.cn>
Mon, 28 Nov 2016 07:25:44 +0000 (15:25 +0800)
commit3f262284f3ce78ce23b4e3c8e9fed112fc56e37d
treea00651eaff5d1aa60f1972c6b7172abcd1562297
parent7db4ee4e743d8ec55a4552560427c0ff37ec6de5
add escalator cli framework

JIRA:ESCALATOR-36

This patch will support escalatorclient,and this is just the frame of
escalatorclient,with this code you can use 'python setup.py sdist' to
generate escalatorclient package.

Change-Id: Id7b602345f7cb78bb548b589d1297a201056699a
Signed-off-by: Zhou Ya <zhou.ya@zte.com.cn>
42 files changed:
client/AUTHORS [new file with mode: 0644]
client/ChangeLog [new file with mode: 0644]
client/LICENSE [new file with mode: 0644]
client/MANIFEST.in [new file with mode: 0644]
client/PKG-INFO [new file with mode: 0644]
client/README.rst [new file with mode: 0644]
client/babel.cfg [new file with mode: 0644]
client/doc/Makefile [new file with mode: 0644]
client/doc/source/apiv2.rst [new file with mode: 0644]
client/doc/source/conf.py [new file with mode: 0644]
client/doc/source/index.rst [new file with mode: 0644]
client/doc/source/man/escalator.rst [new file with mode: 0644]
client/escalatorclient/__init__.py [new file with mode: 0644]
client/escalatorclient/_i18n.py [new file with mode: 0644]
client/escalatorclient/client.py [new file with mode: 0644]
client/escalatorclient/common/__init__.py [new file with mode: 0644]
client/escalatorclient/common/base.py [new file with mode: 0644]
client/escalatorclient/common/http.py [new file with mode: 0644]
client/escalatorclient/common/https.py [new file with mode: 0644]
client/escalatorclient/common/utils.py [new file with mode: 0644]
client/escalatorclient/exc.py [new file with mode: 0644]
client/escalatorclient/openstack/__init__.py [new file with mode: 0644]
client/escalatorclient/openstack/common/__init__.py [new file with mode: 0644]
client/escalatorclient/openstack/common/_i18n.py [new file with mode: 0644]
client/escalatorclient/openstack/common/apiclient/__init__.py [new file with mode: 0644]
client/escalatorclient/openstack/common/apiclient/auth.py [new file with mode: 0644]
client/escalatorclient/openstack/common/apiclient/base.py [new file with mode: 0644]
client/escalatorclient/openstack/common/apiclient/client.py [new file with mode: 0644]
client/escalatorclient/openstack/common/apiclient/exceptions.py [new file with mode: 0644]
client/escalatorclient/openstack/common/apiclient/utils.py [new file with mode: 0644]
client/escalatorclient/shell.py [new file with mode: 0644]
client/escalatorclient/v1/__init__.py [new file with mode: 0644]
client/escalatorclient/v1/client.py [new file with mode: 0644]
client/escalatorclient/v1/shell.py [new file with mode: 0644]
client/escalatorclient/v1/versions.py [new file with mode: 0644]
client/pylintrc [new file with mode: 0644]
client/requirements.txt [new file with mode: 0644]
client/run_tests.sh [new file with mode: 0644]
client/setup.cfg [new file with mode: 0644]
client/setup.py [new file with mode: 0644]
client/test-requirements.txt [new file with mode: 0644]
client/tox.ini [new file with mode: 0644]