setup.py 1.5 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 providers.',
  5. author='Galaxy and GVL Projects',
  6. author_email='support@genome.edu.au',
  7. url='http://cloudbridge.readthedocs.org/',
  8. install_requires=['bunch>=1.00', 'python-keystoneclient', 'python-novaclient', 'boto'],
  9. packages=find_packages(),
  10. license='MIT',
  11. classifiers=[
  12. 'Development Status :: 2 - Pre-Alpha',
  13. 'Environment :: Console',
  14. 'Intended Audience :: Developers',
  15. 'Intended Audience :: System Administrators',
  16. 'License :: OSI Approved :: MIT License',
  17. 'Operating System :: OS Independent',
  18. 'Programming Language :: Python',
  19. 'Topic :: Software Development :: Libraries :: Python Modules',
  20. 'Programming Language :: Python :: 2.5',
  21. 'Programming Language :: Python :: 2.6',
  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. )