Merge "Bottlenecks POSCA testing code reconstruction"
[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 to your environment
11 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                                 ],
27                     'config': [
28                                     '*.yaml'
29                                 ],
30                     'testsuites': [
31                                     'posca/testcase_cfg/*',
32                                     'posca/testcase_script/*',
33                                     'posca/testsuite_story/*',
34                                     'posca/testcase_dashboard/*'
35                                 ],
36                 },
37         url="https://www.opnfv.org",
38         install_requires=["click"],
39         entry_points={
40                     'console_scripts': [
41                                     'bottlenecks=cli.bottlenecks_cli:main'
42                                 ],
43                 },
44 )