Merge "Added test cases for running the Python Tests included with SNAPS."
[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     entry_points={\r
21         'console_scripts': [\r
22             'functest=functest.cli.cli_base:cli'\r
23         ],\r
24     },\r
25 )\r