X-Git-Url: https://osm.etsi.org/gitweb/?p=osm%2FN2VC.git;a=blobdiff_plain;f=setup.py;h=6c8d361602cb1eb64be3edbb491622e5313622aa;hp=09c0bdf9058e890b542dcee98c265b6c18b9bce2;hb=refs%2Fchanges%2F72%2F8772%2F2;hpb=beedfecaa39c24cba059e6e562d890b4358021be;ds=inline diff --git a/setup.py b/setup.py index 09c0bdf..6c8d361 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,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', + 'juju', 'paramiko', + 'pyasn1>=0.4.4', ], include_package_data=True, - maintainer='', - maintainer_email='', - description=(''), + maintainer='Adam Israel', + maintainer_email='adam.israel@canonical.com', + description=_description, url='', license='Apache 2', entry_points={