X-Git-Url: https://osm.etsi.org/gitweb/?p=osm%2Fcommon.git;a=blobdiff_plain;f=setup.py;h=390ca7dd498aaa9bf300b86c7d0ac312948aae2b;hp=f53c839eed6d531756fd057b686ffb21f9707659;hb=HEAD;hpb=b483b920caa7737203e316cfd6f44fa0eb861e47 diff --git a/setup.py b/setup.py index f53c839..390ca7d 100644 --- a/setup.py +++ b/setup.py @@ -18,28 +18,28 @@ import os + from setuptools import setup here = os.path.abspath(os.path.dirname(__file__)) _name = "osm_common" -README = open(os.path.join(here, 'README.rst')).read() +README = open(os.path.join(here, "README.rst")).read() setup( name=_name, - description='OSM common utilities', + description="OSM common utilities", long_description=README, - version_command=('git describe --tags --long --dirty --match v*', 'pep440-git-full'), - - author='ETSI OSM', - author_email='osmsupport@etsi.com', - maintainer='ETSI OSM', - maintainer_email='osmsupport@etsi.com', - - url='https://osm.etsi.org/gitweb/?p=osm/common.git;a=summary', - license='Apache 2.0', - setup_requires=['setuptools-version-command'], - + version_command=( + "git describe --tags --long --dirty --match v*", + "pep440-git-full", + ), + author="ETSI OSM", + author_email="osmsupport@etsi.com", + maintainer="ETSI OSM", + maintainer_email="osmsupport@etsi.com", + url="https://osm.etsi.org/gitweb/?p=osm/common.git;a=summary", + license="Apache 2.0", + setup_requires=["setuptools-version-command"], packages=[_name], include_package_data=True, - )