2 ##############################################################################
3 # Copyright (c) 2016 Huawei Technologies Co.,Ltd and others.
5 # All rights reserved. This program and the accompanying materials
6 # are made available under the terms of the Apache License, Version 2.0
7 # which accompanies this distribution, and is available at
8 # http://www.apache.org/licenses/LICENSE-2.0
9 ##############################################################################
10 '''This file realize the function of how to setup bottlenecks
11 to your environment. This use setuptools tool to setup'''
13 from setuptools import setup, find_packages
19 py_modules=['cli/bottlenecks_cli'],
20 packages=find_packages(),
21 include_package_data=True,
24 'utils/infra_setup/heat/*.py',
25 'utils/infra_setup/runner/*.py',
32 'posca/testcase_cfg/*',
33 'posca/testcase_script/*',
34 'posca/testsuite_story/*',
35 'posca/testcase_dashboard/*'
38 url="https://www.opnfv.org",
39 install_requires=["click"],
42 'bottlenecks=cli.bottlenecks_cli:main'