X-Git-Url: https://code.grnet.gr/git/snf-occi/blobdiff_plain/a99ea610db166ffd7809f30aa4309afd02d04ffe..40b834fa788c5ce1704e92fed1a19462655cc214:/setup.py diff --git a/setup.py b/setup.py index e69de29..149e8a0 100644 --- 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'] + } + + )