Commit 0fefab66 by Toshio Kuratomi

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

parent aacccd44
......@@ -18,6 +18,9 @@
#######################################################
__requires__ = ['ansible']
import pkg_resources
import sys
import os
import stat
......
......@@ -20,6 +20,9 @@
# example playbook to bootstrap this script in the examples/ dir which
# installs ansible and sets it up to run on cron.
__requires__ = ['ansible']
import pkg_resources
import os
import sys
import traceback
......
......@@ -29,7 +29,7 @@ setup(name='ansible',
author_email='michael@ansible.com',
url='http://ansible.com/',
license='GPLv3',
install_requires=['paramiko', 'jinja2', "PyYAML"],
install_requires=['paramiko', 'jinja2', "PyYAML", 'setuptools', 'pycrypto >= 2.6'],
package_dir={ 'ansible': 'lib/ansible' },
packages=[
'ansible',
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment