aboutsummaryrefslogtreecommitdiffstats
path: root/docs/com/img/matrix.png
diff options
context:
space:
mode:
authorCédric Ollivier <cedric.ollivier@orange.com>2018-10-15 19:10:28 +0200
committerCédric Ollivier <cedric.ollivier@orange.com>2018-10-15 19:11:41 +0200
commitb51417c9d2e7d34fec7d4bfa4fd723746e6b28e3 (patch)
treeca994e567c3cced79950248fbbd6934553349b63 /docs/com/img/matrix.png
parent0a0b2b3e644e4ce353b37fa340954b78a590e20f (diff)
Update python3 to python3.6
It conforms with Alpine 3.8 (It updates the related tox entry). Change-Id: I7ba8e3cf5bae2f48ff5d802511a288446bca645a Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
Diffstat (limited to 'docs/com/img/matrix.png')
0 files changed, 0 insertions, 0 deletions
.highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
#!/usr/bin/env python
##############################################################################
# Copyright (c) 2016 Huawei Technologies Co.,Ltd 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
##############################################################################
'''This file realize the function of how to setup bottlenecks
to your environment. This use setuptools tool to setup'''

from setuptools import setup, find_packages


setup(
    name="bottlenecks",
    version="master",
    py_modules=['bottlenecks_cli'],
    packages=find_packages(),
    include_package_data=True,
    package_data={
        'utils': [
            'utils/infra_setup/heat/*.py',
            'utils/infra_setup/runner/*.py',
            'utils/*.py'
        ],
        'config': [
            '*.yaml'
        ],
        'testsuites': [
            'posca/testcase_cfg/*',
            'posca/testcase_script/*',
            'posca/testsuite_story/*',
            'posca/testcase_dashboard/*'
        ],
    },
    url="https://www.opnfv.org",
    install_requires=["click"],
    entry_points={
        'console_scripts': [
            'bottlenecks=cli.bottlenecks_cli:main'
        ],
    },
)