X-Git-Url: https://code.grnet.gr/git/kamaki/blobdiff_plain/72462fc2114cf3c36b32171cc4795c593e3d5df8..db03f805f78fb475f652dc0cdfd61bfd2dbf01d4:/setup.py diff --git a/setup.py b/setup.py index d1730b4..47023b7 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 @@ -35,26 +35,63 @@ from setuptools import setup from sys import version_info +import collections import kamaki -required = ['ansicolors==1.0.2', 'progress==1.0.1', 'requests==0.12.1'] +optional = ['ansicolors', 'mock>=1.0.1'] -if version_info[0:2] < (2, 7): - required.extend(['argparse', 'ordereddict']) +requires = ['objpool>=0.2', 'progress>=1.1'] + +if version_info < (2, 7): + requires.append('argparse') 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', - packages=['kamaki', 'kamaki.clients'], + author='Synnefo development team', + author_email='synnefo-devel@googlegroups.com', + maintainer='Synnefo development team', + maintainer_email='synnefo-devel@googlegroups.com', + packages=[ + 'kamaki', + 'kamaki.cli', + 'kamaki.cli.command_tree', + 'kamaki.cli.argument', + 'kamaki.cli.utils', + 'kamaki.cli.commands', + 'kamaki.clients', + 'kamaki.clients.utils', + 'kamaki.clients.livetest', + 'kamaki.clients.image', + 'kamaki.clients.storage', + 'kamaki.clients.pithos', + 'kamaki.clients.astakos', + 'kamaki.clients.compute', + 'kamaki.clients.cyclades', + ], + 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'] }, - install_requires=required + install_requires=requires )