X-Git-Url: https://code.grnet.gr/git/kamaki/blobdiff_plain/e0d3e091608bf355b1b00491cd56cca89e218aa9..c0fbf04c9ce26b80b32db39bfbd6ac93874730a6:/setup.py diff --git a/setup.py b/setup.py index 45c7b91..4ef2c09 100755 --- a/setup.py +++ b/setup.py @@ -1,6 +1,6 @@ #!/usr/bin/env python -# Copyright 2011 GRNET S.A. All rights reserved. +# Copyright 2011-2013 GRNET S.A. All rights reserved. # # Redistribution and use in source and binary forms, with or # without modification, are permitted provided that the following @@ -50,9 +50,10 @@ if version_info < (2, 7): setup( name='kamaki', version=kamaki.__version__, - description='A command-line tool for managing clouds', + description='A command-line tool for managing www.synnefo.org clouds', long_description=open('README.rst').read(), url='http://code.grnet.gr/projects/kamaki', + download_url='https://code.grnet.gr/projects/kamaki/files', license='BSD', author='Synnefo development team', author_email='synnefo-devel@googlegroups.com', @@ -61,6 +62,7 @@ setup( packages=[ 'kamaki', 'kamaki.cli', + 'kamaki.cli.command_tree', 'kamaki.cli.commands', 'kamaki.clients', 'kamaki.clients.utils', @@ -71,12 +73,20 @@ setup( 'kamaki.clients.astakos', 'kamaki.clients.compute', 'kamaki.clients.cyclades', - 'kamaki.clients.connection', - 'kamaki.clients.commissioning', - 'kamaki.clients.quotaholder', - 'kamaki.clients.quotaholder.api', - 'kamaki.clients.commissioning.utils' ], + classifiers=[ + 'Operating System :: OS Independent', + 'Programming Language :: Python :: 2.6', + 'Programming Language :: Python :: 2.7', + 'Intended Audience :: Developers', + 'Intended Audience :: System Administrators', + 'Environment :: Console', + 'License :: OSI Approved :: BSD License', + 'Natural Language :: English', + 'Topic :: System :: Shells', + 'Topic :: Software Development :: Libraries :: Python Modules', + 'Topic :: Utilities' + ], include_package_data=True, entry_points={ 'console_scripts': ['kamaki = kamaki.cli:main']