X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=setup.py;h=b102779b873e8190c23ed630135bdda51c829a49;hb=ba24d4cac220183fefac64314afc5fd8d19ab671;hp=21111507d2a15fc9accabd55570f3b8e98f113f6;hpb=32a1519183709fbcdd4fe02fe901f34a42f6cf6b;p=osm%2FN2VC.git diff --git a/setup.py b/setup.py index 2111150..b102779 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,18 +23,15 @@ setup( packages=find_packages( exclude=["*.tests", "*.tests.*", "tests.*", "tests"]), install_requires=[ - 'macaroonbakery>=1.1,<2.0', - 'pyRFC3339>=1.0,<2.0', - 'pyyaml>=3.0,<4.0', - 'theblues>=0.3.8,<1.0', - 'websockets>=7.0,<8.0', + 'juju==2.8.4', 'paramiko', '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={