setup.py 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. from setuptools import setup, find_packages
  2. base_reqs = ['bunch>=1.00', 'six>=1.9.0', 'retrying']
  3. openstack_reqs = ['python-keystoneclient',
  4. 'python-novaclient', 'python-cinderclient',
  5. 'python-swiftclient']
  6. aws_reqs = ['boto']
  7. full_reqs = base_reqs + aws_reqs + openstack_reqs
  8. dev_reqs = ['tox'] + full_reqs
  9. setup(name='cloudbridge',
  10. version=0.1,
  11. description='A simple layer of abstraction over multiple cloud'
  12. 'providers.',
  13. author='Galaxy and GVL Projects',
  14. author_email='support@genome.edu.au',
  15. url='http://cloudbridge.readthedocs.org/',
  16. install_requires=base_reqs,
  17. extras_require={
  18. ':python_version=="2.7"': ['py2-ipaddress'],
  19. ':python_version=="3"': ['py2-ipaddress'],
  20. ':python_version=="3.1"': ['py2-ipaddress'],
  21. ':python_version=="3.2"': ['py2-ipaddress'],
  22. 'full': full_reqs,
  23. 'dev': dev_reqs
  24. },
  25. packages=find_packages(),
  26. license='MIT',
  27. classifiers=[
  28. 'Development Status :: 2 - Pre-Alpha',
  29. 'Environment :: Console',
  30. 'Intended Audience :: Developers',
  31. 'Intended Audience :: System Administrators',
  32. 'License :: OSI Approved :: MIT License',
  33. 'Operating System :: OS Independent',
  34. 'Programming Language :: Python',
  35. 'Topic :: Software Development :: Libraries :: Python Modules',
  36. 'Programming Language :: Python :: 2.7',
  37. 'Programming Language :: Python :: 3',
  38. 'Programming Language :: Python :: 3.0',
  39. 'Programming Language :: Python :: 3.1',
  40. 'Programming Language :: Python :: 3.2',
  41. 'Programming Language :: Python :: 3.3',
  42. 'Programming Language :: Python :: 3.4',
  43. 'Programming Language :: Python :: Implementation :: CPython',
  44. 'Programming Language :: Python :: Implementation :: PyPy'],
  45. test_suite="test"
  46. )