Log_dir bug fix&Add function of test_ip init
[bottlenecks.git] / setup.py
1 #!/usr/bin/env python
2 ##############################################################################
3 # Copyright (c) 2016 Huawei Technologies Co.,Ltd and others.
4 #
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'''
12
13 from setuptools import setup, find_packages
14
15
16 setup(
17     name="bottlenecks",
18     version="master",
19     py_modules=['bottlenecks_cli'],
20     packages=find_packages(),
21     include_package_data=True,
22     package_data={
23         'utils': [
24             'utils/infra_setup/heat/*.py',
25             'utils/infra_setup/runner/*.py',
26             'utils/*.py'
27         ],
28         'config': [
29             '*.yaml'
30         ],
31         'testsuites': [
32             'posca/testcase_cfg/*',
33             'posca/testcase_script/*',
34             'posca/testsuite_story/*',
35             'posca/testcase_dashboard/*'
36         ],
37     },
38     url="https://www.opnfv.org",
39     install_requires=["click"],
40     entry_points={
41         'console_scripts': [
42             'bottlenecks=cli.bottlenecks_cli:main'
43         ],
44     },
45 )
46