Wrap the Functest and install it as module by pip.
[functest.git] / setup.py
1 ##############################################################################\r
2 # All rights reserved. This program and the accompanying materials\r
3 # are made available under the terms of the Apache License, Version 2.0\r
4 # which accompanies this distribution, and is available at\r
5 # http://www.apache.org/licenses/LICENSE-2.0\r
6 ##############################################################################\r
7 \r
8 from setuptools import setup, find_packages\r
9 \r
10 \r
11 setup(\r
12     name="functest",\r
13     version="master",\r
14     py_modules=['cli_base'],\r
15     packages=find_packages(),\r
16     include_package_data=True,\r
17     package_data={\r
18     },\r
19     url="https://www.opnfv.org",\r
20     install_requires=["coverage==4.1",\r
21                       "mock==1.3.0",\r
22                       "nose==1.3.7",\r
23                       "click"],\r
24     entry_points={\r
25         'console_scripts': [\r
26             'functest=functest.cli.cli_base:cli'\r
27         ],\r
28     },\r
29 )\r