New documentation with examples/new setup script
[snf-occi] / setup.py
1 from setuptools import setup
2
3 setup(
4     name='snf-occi',
5     version='0.1',
6     description='OCCI to Openstack/Cyclades API bridge',
7     url='http://code.grnet.gr/projects/snf-occi',
8     license='BSD',
9     packages = ['snfOCCI'],
10     entry_points = {
11         'console_scripts' : ['snf-occi = snfOCCI.APIserver:main']
12         }
13
14     )