X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=RO-VIM-azure%2Fsetup.py;h=7db91f3440f1c9baeddd519611342c6ffb20a090;hb=f303e89f3f2af102f021b50cd80f039e4e86759d;hp=954835769b9f20f5e154ec71b2b5a9f79929540e;hpb=f3b9008ac799485802a235e6f8700796ef9b0d8f;p=osm%2FRO.git diff --git a/RO-VIM-azure/setup.py b/RO-VIM-azure/setup.py index 95483576..7db91f34 100644 --- a/RO-VIM-azure/setup.py +++ b/RO-VIM-azure/setup.py @@ -19,40 +19,40 @@ from setuptools import setup _name = "osm_rovim_azure" +_version_command = ("git describe --match v* --tags --long --dirty", "pep440-git-full") +_description = "OSM ro vim plugin for Azure" +_author = "OSM Support" +_author_email = "osmsupport@etsi.org" +_maintainer = "OSM Support" +_maintainer_email = "osmsupport@etsi.org" +_license = "Apache 2.0" +_url = "https://osm.etsi.org/gitweb/?p=osm/RO.git;a=summary" -README = """ +_readme = """ =========== osm-rovim_azure =========== -osm-ro pluging for azure VIM +osm-ro pluging for Azure VIM """ setup( name=_name, - description='OSM ro vim plugin for azure', - long_description=README, - version_command=('git describe --match v* --tags --long --dirty', 'pep440-git-full'), - # version=VERSION, - # python_requires='>3.5.0', - author='ETSI OSM', - author_email='alfonso.tiernosepulveda@telefonica.com', - maintainer='Alfonso Tierno', - maintainer_email='alfonso.tiernosepulveda@telefonica.com', - url='https://osm.etsi.org/gitweb/?p=osm/RO.git;a=summary', - license='Apache 2.0', - + description=_description, + long_description=_readme, + version_command=_version_command, + author=_author, + author_email=_author_email, + maintainer=_maintainer, + maintainer_email=_maintainer_email, + url=_url, + license=_license, packages=[_name], include_package_data=True, - install_requires=[ - "requests", - "netaddr", - "PyYAML", - "azure==4.0.0", - "osm-ro @ git+https://osm.etsi.org/gerrit/osm/RO.git#egg=osm-ro&subdirectory=RO" - ], - setup_requires=['setuptools-version-command'], + setup_requires=["setuptools-version-command"], entry_points={ - 'osm_rovim.plugins': ['rovim_azure = osm_rovim_azure.vimconn_azure'], + "osm_rovim.plugins": [ + "rovim_azure = osm_rovim_azure.vimconn_azure:vimconnector" + ], }, )