X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=RO-VIM-aws%2Fsetup.py;h=ea58fb4db072c45e326ff24ab8f4c5960b9fe705;hb=80135b928ab442c38898750b4751480205b4affc;hp=30b90bd34c75cad3f23f6bf1c69d8dd043d31924;hpb=57dadcfd0fcf3c8e933602e2fb57f32658d9c845;p=osm%2FRO.git diff --git a/RO-VIM-aws/setup.py b/RO-VIM-aws/setup.py index 30b90bd3..ea58fb4d 100644 --- a/RO-VIM-aws/setup.py +++ b/RO-VIM-aws/setup.py @@ -30,26 +30,31 @@ osm-ro pluging for aws VIM setup( name=_name, - description='OSM ro vim plugin for aws', + description="OSM ro vim plugin for aws", long_description=README, - version_command=('git describe --match v* --tags --long --dirty', 'pep440-git-full'), + version_command=( + "git describe --match v* --tags --long --dirty", + "pep440-git-full", + ), # version=VERSION, # python_requires='>3.5.0', - author='ETSI OSM', - # TODO py3 author_email='', - maintainer='OSM_TECH@LIST.ETSI.ORG', # TODO py3 - # TODO py3 maintainer_email='', - url='https://osm.etsi.org/gitweb/?p=osm/RO.git;a=summary', - license='Apache 2.0', - + author="ETSI OSM", + author_email="OSM_TECH@LIST.ETSI.ORG", + maintainer="ETSI OSM", + maintainer_email="OSM_TECH@LIST.ETSI.ORG", + url="https://osm.etsi.org/gitweb/?p=osm/RO.git;a=summary", + license="Apache 2.0", packages=[_name], include_package_data=True, - dependency_links=["git+https://osm.etsi.org/gerrit/osm/RO.git#egg=osm-ro"], install_requires=[ - "requests", "netaddr", "PyYAML", "osm-ro", "boto" + "requests", + "netaddr", + "PyYAML", + "boto", + "osm-ro-plugin @ git+https://osm.etsi.org/gerrit/osm/RO.git#egg=osm-ro-plugin&subdirectory=RO-plugin", ], - setup_requires=['setuptools-version-command'], + setup_requires=["setuptools-version-command"], entry_points={ - 'osm_rovim.plugins': ['rovim_aws = osm_rovim_aws.vimconn_aws'], + "osm_rovim.plugins": ["rovim_aws = osm_rovim_aws.vimconn_aws:vimconnector"], }, )