setup.py 1.4 KB

12345678910111213141516171819202122232425262728293031323334
  1. from setuptools import setup, find_packages
  2. setup(name='cloudbridge',
  3. version=0.1,
  4. description='A simple layer of abstraction over multiple cloud'
  5. 'providers.',
  6. author='Galaxy and GVL Projects',
  7. author_email='support@genome.edu.au',
  8. url='http://cloudbridge.readthedocs.org/',
  9. install_requires=['bunch>=1.00', 'python-keystoneclient',
  10. 'python-novaclient', 'boto'],
  11. packages=find_packages(),
  12. license='MIT',
  13. classifiers=[
  14. 'Development Status :: 2 - Pre-Alpha',
  15. 'Environment :: Console',
  16. 'Intended Audience :: Developers',
  17. 'Intended Audience :: System Administrators',
  18. 'License :: OSI Approved :: MIT License',
  19. 'Operating System :: OS Independent',
  20. 'Programming Language :: Python',
  21. 'Topic :: Software Development :: Libraries :: Python Modules',
  22. 'Programming Language :: Python :: 2.7',
  23. 'Programming Language :: Python :: 3',
  24. 'Programming Language :: Python :: 3.0',
  25. 'Programming Language :: Python :: 3.1',
  26. 'Programming Language :: Python :: 3.2',
  27. 'Programming Language :: Python :: 3.3',
  28. 'Programming Language :: Python :: 3.4',
  29. 'Programming Language :: Python :: Implementation :: CPython',
  30. 'Programming Language :: Python :: Implementation :: PyPy'],
  31. test_suite="test"
  32. )