initial delivery of python-osmclient
Signed-off-by: Mike Marchetti <mmarchetti@sandvine.com>
diff --git a/python-osmclient/setup.py b/python-osmclient/setup.py
new file mode 100644
index 0000000..13b1771
--- /dev/null
+++ b/python-osmclient/setup.py
@@ -0,0 +1,17 @@
+from setuptools import setup,find_packages
+
+setup(
+ name='osmclient',
+ version='0.1',
+ author='Mike Marchetti',
+ author_email='mmarchetti@sandvine.com',
+ packages=find_packages(),
+ include_package_data=True,
+ install_requires=[
+ 'Click','prettytable'
+ ],
+ entry_points='''
+ [console_scripts]
+ osm=osmclient.scripts.osm:cli
+ ''',
+)