diff options
author | Jose Lausuch <jose.lausuch@ericsson.com> | 2016-11-17 08:25:36 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2016-11-17 08:25:36 +0000 |
commit | 387600a6d881bfdc046772b2a3cfbfb59fd2469c (patch) | |
tree | b74dacc7ed4407616007fc158c35e4e55232659e | |
parent | f1fdd2336a3d5175a41082da4c6173addc1fb6b9 (diff) | |
parent | e310e1a4ba195579bd2114dfe25f0c242eb25abb (diff) |
Merge "Add setup.py for common OPNFV modules"
-rw-r--r-- | modules/README.rst | 3 | ||||
-rw-r--r-- | modules/setup.py | 21 |
2 files changed, 22 insertions, 2 deletions
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"] +) |