Require a recent enough version of pycrypto and see that playbook and vault ues it.

This commit is contained in:
Toshio Kuratomi 2014-03-14 11:37:24 -07:00
parent aacccd441b
commit 0fefab6651
3 changed files with 7 additions and 1 deletions

View file

@ -18,6 +18,9 @@
####################################################### #######################################################
__requires__ = ['ansible']
import pkg_resources
import sys import sys
import os import os
import stat import stat

View file

@ -20,6 +20,9 @@
# example playbook to bootstrap this script in the examples/ dir which # example playbook to bootstrap this script in the examples/ dir which
# installs ansible and sets it up to run on cron. # installs ansible and sets it up to run on cron.
__requires__ = ['ansible']
import pkg_resources
import os import os
import sys import sys
import traceback import traceback

View file

@ -29,7 +29,7 @@ setup(name='ansible',
author_email='michael@ansible.com', author_email='michael@ansible.com',
url='http://ansible.com/', url='http://ansible.com/',
license='GPLv3', license='GPLv3',
install_requires=['paramiko', 'jinja2', "PyYAML"], install_requires=['paramiko', 'jinja2', "PyYAML", 'setuptools', 'pycrypto >= 2.6'],
package_dir={ 'ansible': 'lib/ansible' }, package_dir={ 'ansible': 'lib/ansible' },
packages=[ packages=[
'ansible', 'ansible',