bugfix: copy hosts file
[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="0.1",
19     py_modules=['cli/bottlenecks_cli'],
20     packages=find_packages(),
21     include_package_data=True,
22     package_data={
23         'utils': [
24             '*.py'
25         ],
26         'config': [
27             '*.yaml'
28         ],
29         'testsuites': [
30             'posca/testcase_cfg/*',
31             'posca/testcase_script/*',
32             'posca/testsuite_story/*',
33             'posca/testcase_dashboard/*'
34         ],
35     },
36     url="https://www.opnfv.org",
37     install_requires=["click"],
38     entry_points={
39         'console_scripts': [
40             'bottlenecks=cli.bottlenecks_cli:main'
41         ],
42     },
43 )