Merge "Refactor reporting dir"
[releng.git] / modules / 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
9 from setuptools import setup, find_packages
10
11
12 setup(
13     name="opnfv",
14     version="danube",
15     packages=find_packages(),
16     include_package_data=True,
17     package_data={
18     },
19     url="https://www.opnfv.org",
20     install_requires=["paramiko>=2.0.1"]
21 )