X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=setup.py;h=ff87842db965ba25f7bd09c34350b46d301529a1;hb=d13d599e9c39425d8d8ed9e93b47a9f931f62bb3;hp=689e926c8487c92d6a04f7148899f53b824118c8;hpb=7d73c88c4aab1021c4e1ea3f210dd4a23a4aeb02;p=osm%2Fosmclient.git diff --git a/setup.py b/setup.py index 689e926..ff87842 100644 --- a/setup.py +++ b/setup.py @@ -14,31 +14,27 @@ # under the License. from setuptools import setup, find_packages -_description = 'OSM client library and console script' +_description = "OSM client library and console script" setup( - name='osmclient', - version_command=('git describe --match v* --tags --long --dirty', - 'pep440-git-full'), - author='ETSI', + name="osmclient", + version_command=( + "git describe --match v* --tags --long --dirty", + "pep440-git-full", + ), + author="ETSI", packages=find_packages(), include_package_data=True, - maintainer='Gerardo Garcia', - maintainer_email='gerardo.garciadeblas@telefonica.com', + 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' - ], - dependency_links=[ - 'git+https://osm.etsi.org/gerrit/osm/IM.git#egg=osm-im', - ], + 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", ], }, )