X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=setup.py;h=ff87842db965ba25f7bd09c34350b46d301529a1;hb=70208ca1de7ff0e91a17d8f918d5b6044e9fa388;hp=d5c9a2bb0ab75e2091f92d4c36cc417cedb339eb;hpb=b7463a4821eabd214b2b38d54db38a5a1aae53d6;p=osm%2Fosmclient.git diff --git a/setup.py b/setup.py index d5c9a2b..ff87842 100644 --- a/setup.py +++ b/setup.py @@ -14,26 +14,27 @@ # 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', + name="osmclient", + version_command=( + "git describe --match v* --tags --long --dirty", + "pep440-git-full", + ), + author="ETSI", packages=find_packages(), include_package_data=True, - install_requires=[ - 'Click', 'prettytable', 'pyyaml', 'pycurl', 'python-magic', - 'jinja2', 'osm-im' - ], - dependency_links=[ - 'git+https://osm.etsi.org/gerrit/osm/IM.git#egg=osm-im', - ], + maintainer="Gerardo Garcia", + maintainer_email="gerardo.garciadeblas@telefonica.com", + description=_description, + license='Apache 2', + setup_requires=['setuptools-version-command'], test_suite='nose.collector', entry_points={ - 'console_scripts': [ - 'osm = osmclient.scripts.osm:cli', + "console_scripts": [ + "osm = osmclient.scripts.osm:cli", ], }, )