X-Git-Url: https://osm.etsi.org/gitweb/?p=osm%2FN2VC.git;a=blobdiff_plain;f=setup.py;h=0c874f1a0bb1ef86d22f715d6f6ed79f8f7df43e;hp=b27dcbe9c366b032b0028c922acf5f6b10adfcf0;hb=42f328a34a3ec7c066350de81e1331632a3fee92;hpb=ea14f890f054d5eb85416a5b6c8c7713e2506ad8;ds=sidebyside diff --git a/setup.py b/setup.py index b27dcbe..0c874f1 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,17 +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>=4.0,<5.0', + 'juju==2.8.2', '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={