X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=setup.py;h=832e2feefb6fc4c5927e9a881d6d45261a1010cb;hb=c4cd58f1fa79599a489730b41cda4cf43f552ecd;hp=8109b9f0bc213f3b1645407084e7ffcda9a2491b;hpb=776a777331f6d8572c3ed062f0c95cf871e61592;p=osm%2Fosmclient.git diff --git a/setup.py b/setup.py index 8109b9f..832e2fe 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 --match v* --tags --long --dirty', + 'pep440-git-full'), 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',