from setuptools import setup import cccli import os ldesc = open(os.path.join(os.path.dirname(__file__), 'README')).read() setup( name='cc-cli', version=cccli.version, description='CloudControl CLI', long_description=ldesc, author='Sebastien Luttringer', author_email='sebastien.luttringer@smartjog.com', license='GPL2', packages=['cccli', 'cccli.commands'], scripts=['bin/cc-cli'], classifiers=[ 'Operating System :: Unix', 'Programming Language :: Python', ], )