X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=setup.py;h=832e2feefb6fc4c5927e9a881d6d45261a1010cb;hb=c4cd58f1fa79599a489730b41cda4cf43f552ecd;hp=c250356c17c2f4f3363d39ba52aaf277aa255493;hpb=4c7e237e45bc6fe209006b4837a8e6b031e78e1c;p=osm%2Fosmclient.git diff --git a/setup.py b/setup.py index c250356..832e2fe 100644 --- a/setup.py +++ b/setup.py @@ -2,14 +2,17 @@ from setuptools import setup, find_packages setup( name='osmclient', - version='0.1', + 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', entry_points=''' [console_scripts] osm=osmclient.scripts.osm:cli