12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- """A setuptools based setup module.
- """
- from setuptools import setup
- setup(
- name='ooinstall',
-
-
-
- version="3.0.0",
- description="Ansible wrapper for OpenShift Enterprise 3 installation.",
-
- url="https://github.com/openshift/openshift-ansible",
-
- author="openshift@redhat.com",
- author_email="OpenShift",
-
- license="Apache 2.0",
-
- classifiers=[
- 'Development Status :: 4 - Beta',
- 'License :: OSI Approved :: Apache Software License',
- 'Programming Language :: Python :: 2.7',
- 'Topic :: Utilities',
- ],
-
- keywords='oo-install setuptools development',
-
-
-
- packages=['ooinstall'],
- package_dir={'': 'src'},
-
-
-
-
- install_requires=['click', 'PyYAML', 'ansible'],
-
-
-
-
-
-
-
-
-
-
-
- package_data={
- 'ooinstall': ['ansible.cfg', 'ansible-quiet.cfg', 'ansible_plugins/*'],
- },
-
-
-
- entry_points={
- 'console_scripts': [
- 'oo-install=ooinstall.cli_installer:cli',
- ],
- },
- )
|