setup.py 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. """A setuptools based setup module.
  2. """
  3. # Always prefer setuptools over distutils
  4. from setuptools import setup
  5. setup(
  6. name='ooinstall',
  7. # Versions should comply with PEP440. For a discussion on single-sourcing
  8. # the version across setup.py and the project code, see
  9. # https://packaging.python.org/en/latest/single_source_version.html
  10. version="3.0.0",
  11. description="Ansible wrapper for OpenShift Enterprise 3 installation.",
  12. # The project's main homepage.
  13. url="http://github.com/openshift/openshift-extras/tree/enterprise-3.0/oo-install",
  14. # Author details
  15. author="openshift@redhat.com",
  16. author_email="OpenShift",
  17. # Choose your license
  18. license="Apache 2.0",
  19. # See https://pypi.python.org/pypi?%3Aaction=list_classifiers
  20. classifiers=[
  21. 'Development Status :: 4 - Beta',
  22. 'License :: OSI Approved :: Apache Software License',
  23. 'Programming Language :: Python :: 2.7',
  24. 'Topic :: Utilities',
  25. ],
  26. # What does your project relate to?
  27. keywords='oo-install setuptools development',
  28. # You can just specify the packages manually here if your project is
  29. # simple. Or you can use find_packages().
  30. #packages=find_packages(exclude=['contrib', 'docs', 'tests*']),
  31. packages=['ooinstall'],
  32. package_dir={'ooinstall': 'src/ooinstall'},
  33. # List run-time dependencies here. These will be installed by pip when
  34. # your project is installed. For an analysis of "install_requires" vs pip's
  35. # requirements files see:
  36. # https://packaging.python.org/en/latest/requirements.html
  37. install_requires=['click', 'PyYAML', 'ansible'],
  38. # List additional groups of dependencies here (e.g. development
  39. # dependencies). You can install these using the following syntax,
  40. # for example:
  41. # $ pip install -e .[dev,test]
  42. #extras_require={
  43. # 'dev': ['check-manifest'],
  44. # 'test': ['coverage'],
  45. #},
  46. # If there are data files included in your packages that need to be
  47. # installed, specify them here. If using Python 2.6 or less, then these
  48. # have to be included in MANIFEST.in as well.
  49. package_data={
  50. 'ooinstall': ['ansible.cfg', 'ansible-quiet.cfg', 'ansible_plugins/*'],
  51. },
  52. tests_require=['nose'],
  53. test_suite='nose.collector',
  54. # To provide executable scripts, use entry points in preference to the
  55. # "scripts" keyword. Entry points provide cross-platform support and allow
  56. # pip to create the appropriate form of executable for the target platform.
  57. entry_points={
  58. 'console_scripts': [
  59. 'oo-install=ooinstall.cli_installer:cli',
  60. ],
  61. },
  62. )