Fix Content-Type for ns-create
[osm/osmclient.git] / setup.py
index 13b1771..bf1f71b 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -1,15 +1,18 @@
-from setuptools import setup,find_packages
+from setuptools import setup, find_packages
 
 setup(
     name='osmclient',
-    version='0.1',
+    version_command=('git describe --match v* --tags --long --dirty',
+                     'pep440-git'),
     author='Mike Marchetti',
     author_email='mmarchetti@sandvine.com',
     packages=find_packages(),
     include_package_data=True,
     install_requires=[
-        'Click','prettytable'
+        'Click', 'prettytable', 'pyyaml', 'pycurl', 'python-magic'
     ],
+    setup_requires=['setuptools-version-command'],
+    test_suite='nose.collector',
     entry_points='''
         [console_scripts]
         osm=osmclient.scripts.osm:cli