setup.py 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  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'],
  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_plugins/*'],
  51. },
  52. # Although 'package_data' is the preferred approach, in some case you may
  53. # need to place data files outside of your packages. See:
  54. # http://docs.python.org/3.4/distutils/setupscript.html#installing-additional-files # noqa
  55. # In this case, 'data_file' will be installed into '<sys.prefix>/my_data'
  56. #data_files=[('my_data', ['data/data_file'])],
  57. tests_require=['nose'],
  58. test_suite='nose.collector',
  59. # To provide executable scripts, use entry points in preference to the
  60. # "scripts" keyword. Entry points provide cross-platform support and allow
  61. # pip to create the appropriate form of executable for the target platform.
  62. entry_points={
  63. 'console_scripts': [
  64. 'oo-install=ooinstall.cli_installer:cli',
  65. ],
  66. },
  67. )