X-Git-Url: https://osm.etsi.org/gitweb/?p=osm%2FN2VC.git;a=blobdiff_plain;f=setup.py;h=7a6b451e724be2661502a403252e92377d3e61c1;hp=1eb3f69baad4772608a389664185c11e9bac6eec;hb=85755d17a807df83d0e472e6e73500a4d743296b;hpb=9ae4d929c2b739d146e3e27388dc4825ca046e50 diff --git a/setup.py b/setup.py index 1eb3f69..7a6b451 100644 --- a/setup.py +++ b/setup.py @@ -14,6 +14,8 @@ from setuptools import setup, find_packages +_description = 'OSM library implementing common interface towards VCA module' + setup( name='N2VC', version_command=('git describe --match v* --tags --long --dirty', @@ -21,14 +23,14 @@ setup( packages=find_packages( exclude=["*.tests", "*.tests.*", "tests.*", "tests"]), install_requires=[ - 'juju', - 'paramiko', + 'juju==2.8.2', 'pyasn1>=0.4.4', + 'kubernetes==10.0.1' ], include_package_data=True, maintainer='Adam Israel', maintainer_email='adam.israel@canonical.com', - description=(''), + description=_description, url='', license='Apache 2', entry_points={