X-Git-Url: https://osm.etsi.org/gitweb/?p=osm%2FN2VC.git;a=blobdiff_plain;f=setup.py;h=7a4fe87ce8b4b9c86d08359cc9ccf5dcfb3c7397;hp=d836d2f2dc2382f3b76add5d14e05d8cc6b18924;hb=b4e7f5c425df48f7e946d792184d1d1b44879fe9;hpb=edc419027117245c0edd198d21719a7ed4e12ac9 diff --git a/setup.py b/setup.py index d836d2f..7a4fe87 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,14 @@ 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>=4.0,<5.0', - 'paramiko', + 'juju==2.8.4', '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={