diff options
author | Toshio Kuratomi <toshio@fedoraproject.org> | 2015-10-16 02:55:23 +0200 |
---|---|---|
committer | Toshio Kuratomi <toshio@fedoraproject.org> | 2015-10-16 17:21:28 +0200 |
commit | baa309309d4041678bac4352da62a3b555b4fd49 (patch) | |
tree | cb863a297bb37d9beac11a850ca0f8c785f55f71 /setup.py | |
parent | properly fail_json when we don't have ssl on a non-redhat distro (diff) | |
download | ansible-baa309309d4041678bac4352da62a3b555b4fd49.tar.xz ansible-baa309309d4041678bac4352da62a3b555b4fd49.zip |
Bundle a new version of python-six for compatibility along with some code to make it easy for distributions to override the bunndled copy if they have a new enough version.
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -20,7 +20,9 @@ setup(name='ansible', author_email='support@ansible.com', url='http://ansible.com/', license='GPLv3', - install_requires=['paramiko', 'jinja2', "PyYAML", 'setuptools', 'pycrypto >= 2.6', 'six'], + # Ansible will also make use of a system copy of python-six if installed but use a + # Bundled copy if it's not. + install_requires=['paramiko', 'jinja2', "PyYAML", 'setuptools', 'pycrypto >= 2.6'], package_dir={ '': 'lib' }, packages=find_packages('lib'), package_data={ |