From: garciadeblas Date: Tue, 3 Dec 2019 11:39:34 +0000 (+0100) Subject: setup.py: added description, maintainer and license X-Git-Tag: v7.0.0rc1~3 X-Git-Url: https://osm.etsi.org/gitweb/?a=commitdiff_plain;h=refs%2Fchanges%2F01%2F8301%2F1;p=osm%2Fosmclient.git setup.py: added description, maintainer and license Change-Id: I37c2ff61e3078aa5ed119836df15ba62e90828b4 Signed-off-by: garciadeblas --- diff --git a/setup.py b/setup.py index d5c9a2b..689e926 100644 --- a/setup.py +++ b/setup.py @@ -14,14 +14,19 @@ # under the License. from setuptools import setup, find_packages +_description = 'OSM client library and console script' + setup( name='osmclient', version_command=('git describe --match v* --tags --long --dirty', 'pep440-git-full'), - author='Mike Marchetti', - author_email='mmarchetti@sandvine.com', + author='ETSI', packages=find_packages(), include_package_data=True, + maintainer='Gerardo Garcia', + maintainer_email='gerardo.garciadeblas@telefonica.com', + description=_description, + license='Apache 2', install_requires=[ 'Click', 'prettytable', 'pyyaml', 'pycurl', 'python-magic', 'jinja2', 'osm-im'