627785eca3d7717121e7c7bb6a8f07049c40b706
[releng.git] / utils / test / reporting / 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="reporting",
13     version="master",
14     packages=find_packages(),
15     include_package_data=True,
16     package_data={
17     },
18     url="https://www.opnfv.org",
19     install_requires=["coverage==4.1",
20                       "mock==1.3.0",
21                       "nose==1.3.7"],
22 )