diff options
author | zhifeng.jiang <jiang.zhifeng@zte.com.cn> | 2016-07-03 23:04:40 +0800 |
---|---|---|
committer | zhifeng.jiang <jiang.zhifeng@zte.com.cn> | 2016-07-05 20:05:26 +0800 |
commit | 4c7387f811c01bd74b5ae6e0d0cca4bc98d298e8 (patch) | |
tree | 3ca8f61a152b196ca65ef526ae9659c0bddbb411 /setup.py | |
parent | 1560721b960531785a29d70a572f0ee791234fb0 (diff) |
Add some UT test cases and fix pep8 errors for cli and env_setup.
JIRA:QTIP-89
Change-Id: I4a46898071001f679f1a032a560d605dffc8eb9f
Signed-off-by: zhifeng.jiang <jiang.zhifeng@zte.com.cn>
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/setup.py b/setup.py new file mode 100644 index 00000000..cb19e879 --- /dev/null +++ b/setup.py @@ -0,0 +1,11 @@ +#!/usr/bin/env python + +from distutils.core import setup + +setup(name='qtip', + py_modules=['qtip'], + version='1.0', + author='opnfv', + packages=['func','data.ref_results','data.report'], + ) + |