Merge "Bottlenecks frame support stack create"
[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
11 from setuptools import setup, find_packages
12
13
14 setup(
15     name="bottlenecks",
16     version="master",
17     py_modules=['bottlenecks_cli'],
18     packages=find_packages(),
19     include_package_data=True,
20     package_data={
21         'utils': [
22             'utils/infra_setup/heat/*.py'
23         ]
24     },
25     url="https://www.opnfv.org",
26     install_requires=["click"],
27     entry_points={
28         'console_scripts': [
29             'bottlenecks=cli.bottlenecks_cli:main'
30         ],
31     },
32 )