setup.py 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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="https://github.com/openshift/openshift-ansible",
  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=['ooinstall'],
  31. package_dir={'': 'src'},
  32. # List run-time dependencies here. These will be installed by pip when
  33. # your project is installed. For an analysis of "install_requires" vs pip's
  34. # requirements files see:
  35. # https://packaging.python.org/en/latest/requirements.html
  36. install_requires=['click', 'PyYAML', 'ansible'],
  37. # If there are data files included in your packages that need to be
  38. # installed, specify them here. If using Python 2.6 or less, then these
  39. # have to be included in MANIFEST.in as well.
  40. package_data={
  41. 'ooinstall': ['ansible.cfg', 'ansible-quiet.cfg', 'ansible_plugins/*'],
  42. },
  43. # To provide executable scripts, use entry points in preference to the
  44. # "scripts" keyword. Entry points provide cross-platform support and allow
  45. # pip to create the appropriate form of executable for the target platform.
  46. entry_points={
  47. 'console_scripts': [
  48. 'oo-install=ooinstall.cli_installer:cli',
  49. ],
  50. },
  51. )