X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=setup.py;h=3c91487d3f52353dd754877d4f1760ae83a091b5;hb=d655ca05116081f8d7dfdebd0df81ff5d9bce58d;hp=04d35e3459d2a1013db61d732a69b9570d76b8fb;hpb=bb0f2a31d2d1391281a68df8379e9dd615f1859f;p=osm%2FMON.git diff --git a/setup.py b/setup.py index 04d35e3..3c91487 100644 --- a/setup.py +++ b/setup.py @@ -21,21 +21,21 @@ from setuptools import setup -_name = 'osm_mon' -_version_command = ('git describe --match v* --tags --long --dirty', 'pep440-git-full') -_description = 'OSM Monitoring Module' +_name = "osm_mon" +_version_command = ("git describe --match v* --tags --long --dirty", "pep440-git-full") +_description = "OSM Monitoring Module" _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/MON.git;a=tree' +_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/MON.git;a=tree" setup( name=_name, version_command=_version_command, description=_description, - long_description=open('README.rst', encoding='utf-8').read(), + long_description=open("README.rst", encoding="utf-8").read(), author=_author, author_email=_author_email, maintainer=_maintainer, @@ -54,5 +54,5 @@ setup( "osm-mon-healthcheck = osm_mon.cmd.mon_healthcheck:main", ] }, - setup_requires=['setuptools-version-command'] + setup_requires=["setuptools-version-command"], )