summaryrefslogtreecommitdiffstats
path: root/setup.py
blob: e00e97ba71655c4acf178bec17faa1eeb2585a6e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/usr/bin/env python

from setuptools import setup


setup(
    name='qtip-cli',
    version='0.1.dev0',
    description='Platform Performance Benchmarking for OPNFV',
    author='OPNFV',
    author_email='zhang.yujunz@zte.com.cn',
    install_requires=['click', 'pyyaml', 'prettytable'],
    packages=['cli'],
    entry_points={
        'console_scripts': ['qtip=cli.entry:cli']
    },
    license='Apache-2.0',
    keywords="performance benchmark opnfv",
    url="https://wiki.opnfv.org/display/qtip"
)