X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;ds=inline;f=setup.py;h=982a5632fb7ec0bd1f3e95e73dcb6ced3b6b6d26;hb=063fb07aa8de053f07b66d0876600dd8acfb7db1;hp=8109b9f0bc213f3b1645407084e7ffcda9a2491b;hpb=eeb2c002b1ee84406f22a64e1cea69cc0687d63c;p=osm%2Fosmclient.git diff --git a/setup.py b/setup.py index 8109b9f..982a563 100644 --- a/setup.py +++ b/setup.py @@ -2,13 +2,14 @@ from setuptools import setup, find_packages setup( name='osmclient', - version_command=('git describe --tags --long --dirty', 'pep440-git'), + version_command=('git describe --tags --long --dirty --match v*', + 'pep440-git'), author='Mike Marchetti', author_email='mmarchetti@sandvine.com', packages=find_packages(), include_package_data=True, install_requires=[ - 'Click', 'prettytable', 'pyyaml', 'pycurl' + 'Click', 'prettytable', 'pyyaml', 'pycurl', 'python-magic' ], setup_requires=['setuptools-version-command'], test_suite='nose.collector',