Initial delivery of IM python package build
[osm/IM.git] / setup.py
diff --git a/setup.py b/setup.py
new file mode 100644 (file)
index 0000000..84a8b05
--- /dev/null
+++ b/setup.py
@@ -0,0 +1,15 @@
+from setuptools import setup, find_packages
+
+setup(
+    name='osm_im',
+    version_command=('git describe --tags --long --dirty', 'pep440-git'),
+    author='Mike Marchetti',
+    author_email='mmarchetti@sandvine.com',
+    packages=find_packages(),
+    include_package_data=True,
+    install_requires=[
+        'pyangbind'
+    ],
+    setup_requires=['setuptools-version-command'],
+    test_suite='nose.collector',
+)