vnf-list: support of filter string; documented help for --filter
[osm/osmclient.git] / setup.py
index 8109b9f..832e2fe 100644 (file)
--- 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',