From: jose.lausuch Date: Wed, 16 Nov 2016 11:53:12 +0000 (+0100) Subject: Add setup.py for common OPNFV modules X-Git-Tag: danube.1.0~650^2 X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=commitdiff_plain;h=e310e1a4ba195579bd2114dfe25f0c242eb25abb;p=releng.git Add setup.py for common OPNFV modules JIRA: RELENG-161 Change-Id: I2423493d0c9c9c4ce78fe8c2669b9ed24e697b58 Signed-off-by: jose.lausuch --- diff --git a/modules/README.rst b/modules/README.rst index 7c91eca5a..de9ff559f 100644 --- a/modules/README.rst +++ b/modules/README.rst @@ -4,8 +4,7 @@ project in OPNFV. This tools must be python based and shall be imported as follows: from opnfv.utils import SSHUtils - from opnfv.utils import RelengLogger - ... + from opnfv.utils import OPNFVLogger For further information about how to use this modules directory, contact: fatih.degirmenci@ericsson.com diff --git a/modules/setup.py b/modules/setup.py new file mode 100644 index 000000000..26f8a6eaa --- /dev/null +++ b/modules/setup.py @@ -0,0 +1,21 @@ +############################################################################## +# All rights reserved. This program and the accompanying materials +# are made available under the terms of the Apache License, Version 2.0 +# which accompanies this distribution, and is available at +# http://www.apache.org/licenses/LICENSE-2.0 +############################################################################## + + +from setuptools import setup, find_packages + + +setup( + name="opnfv", + version="danube", + packages=find_packages(), + include_package_data=True, + package_data={ + }, + url="https://www.opnfv.org", + install_requires=["paramiko>=2.0.1"] +)