Authorize only list of selected VOs
[snf-occi] / setup.py
index e69de29..149e8a0 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -0,0 +1,14 @@
+from setuptools import setup
+
+setup(
+    name='snf-occi',
+    version='0.1',
+    description='OCCI to Openstack/Cyclades API bridge',
+    url='http://code.grnet.gr/projects/snf-occi',
+    license='BSD',
+    packages = ['snfOCCI'],
+    entry_points = {
+        'console_scripts' : ['snf-occi = snfOCCI.APIserver:main']
+        }
+
+    )