Bugfix: set docker api version to 1.24
[bottlenecks.git] / cli / 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
12
13 setup(
14     name='bottlenecks',
15     version='0.1',
16     py_modules=['bottlenecks_cli'],
17     include_package_data=True,
18     install_requires=[
19         'click',
20     ],
21     entry_points='''
22         [console_scripts]
23         bottlenecks=bottlenecks_cli:main
24     ''',
25 )
26