From 6200c67619329f686dfb888ac7ef25469375df83 Mon Sep 17 00:00:00 2001 From: Yujun Zhang Date: Thu, 24 Nov 2016 14:01:47 +0800 Subject: Use `pbr` for setup configuration - `pbr` does a bunch of things[1] and is used widely in OpenStack - moved legacy `qtip.py` to scripts in order to keep the project folder clean [1]: http://docs.openstack.org/developer/pbr/#what-it-does Change-Id: I6a9b83883283eaa527e2c3d4cd8d221ee6efca41 Signed-off-by: Yujun Zhang --- scripts/qtip.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 scripts/qtip.py (limited to 'scripts/qtip.py') diff --git a/scripts/qtip.py b/scripts/qtip.py new file mode 100644 index 00000000..66ff674f --- /dev/null +++ b/scripts/qtip.py @@ -0,0 +1,18 @@ +############################################################################## +# Copyright (c) 2015 Dell Inc and others. +# Copyright (c) 2016 ZTE corp. and others. +# +# All rights reserved. This program and the accompanying materials +# are made available under the terms of the Apache License, Version 2.0 +# which accompanies this distribution, and is available at +# http://www.apache.org/licenses/LICENSE-2.0 +############################################################################## +from qtip.utils.cli import Cli + + +def main(): + Cli() + + +if __name__ == "__main__": + main() -- cgit 1.2.3-korg