Convert files to Unix format.
[functest.git] / setup.py
1 ##############################################################################
2 # All rights reserved. This program and the accompanying materials
3 # are made available under the terms of the Apache License, Version 2.0
4 # which accompanies this distribution, and is available at
5 # http://www.apache.org/licenses/LICENSE-2.0
6 ##############################################################################
7
8 from setuptools import setup, find_packages
9
10
11 setup(
12     name="functest",
13     version="master",
14     py_modules=['cli_base'],
15     packages=find_packages(),
16     include_package_data=True,
17     package_data={
18     },
19     url="https://www.opnfv.org",
20     entry_points={
21         'console_scripts': [
22             'functest=functest.cli.cli_base:cli'
23         ],
24     },
25 )