X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=RO-VIM-aws%2Fsetup.py;h=ea58fb4db072c45e326ff24ab8f4c5960b9fe705;hb=80135b928ab442c38898750b4751480205b4affc;hp=12de705377895841b2cd43a461039fa7542fe641;hpb=7277486065c905f91477bb064da86855a8fa269a;p=osm%2FRO.git diff --git a/RO-VIM-aws/setup.py b/RO-VIM-aws/setup.py index 12de7053..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', - 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', - + 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, install_requires=[ - "requests", "netaddr", "PyYAML", "boto", - "osm-ro-plugin @ git+https://osm.etsi.org/gerrit/osm/RO.git#egg=osm-ro-plugin&subdirectory=RO-plugin" + "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:vimconnector'], + "osm_rovim.plugins": ["rovim_aws = osm_rovim_aws.vimconn_aws:vimconnector"], }, )