X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=RO-SDN-odl_openflow%2Fsetup.py;h=4d6580a67bbbccd6b7c661af01c903d4136af6b0;hb=80135b928ab442c38898750b4751480205b4affc;hp=32ebde108d35872ff29c1e6a4b05ac7a26c77a92;hpb=e493e9b91720e5116e00b4c06cf66c767bccce2f;p=osm%2FRO.git diff --git a/RO-SDN-odl_openflow/setup.py b/RO-SDN-odl_openflow/setup.py index 32ebde10..4d6580a6 100644 --- a/RO-SDN-odl_openflow/setup.py +++ b/RO-SDN-odl_openflow/setup.py @@ -30,26 +30,30 @@ osm-ro plugin for OpenDayLight SDN using pre-computed openflow rules setup( name=_name, - description='OSM RO plugin for SDN with odl openflow rules', + description="OSM RO plugin for SDN with odl openflow rules", 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='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', - + 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", packages=[_name], include_package_data=True, install_requires=[ "requests", - "osm-ro-plugin @ git+https://osm.etsi.org/gerrit/osm/RO.git#egg=osm-ro-plugin&subdirectory=RO-plugin" + "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_rosdn.plugins': ['rosdn_odlof = osm_rosdn_odlof.sdnconn_odlof:SdnConnectorOdlOf'], + "osm_rosdn.plugins": [ + "rosdn_odlof = osm_rosdn_odlof.sdnconn_odlof:SdnConnectorOdlOf" + ], }, )