setup.py 1.4 KB

1234567891011121314151617181920212223242526272829303132
  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.7',
  21. 'Programming Language :: Python :: 3',
  22. 'Programming Language :: Python :: 3.0',
  23. 'Programming Language :: Python :: 3.1',
  24. 'Programming Language :: Python :: 3.2',
  25. 'Programming Language :: Python :: 3.3',
  26. 'Programming Language :: Python :: 3.4',
  27. 'Programming Language :: Python :: Implementation :: CPython',
  28. 'Programming Language :: Python :: Implementation :: PyPy'],
  29. test_suite="test"
  30. )