diff --git a/setup.py b/setup.py index 4b0f74b3bf3..7afa0e4440e 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,6 @@ # for you, you should go through "make install" or "make RPMs" # for that, or manually copy modules over. -import glob import os import sys @@ -19,7 +18,8 @@ setup(name='ansible', author_email='michael.dehaan@gmail.com', url='http://ansible.github.com/', license='GPLv3', - package_dir = { 'ansible' : 'lib/ansible' }, + install_requires=['paramiko', 'jinja2', "PyYAML"], + package_dir={ 'ansible': 'lib/ansible' }, packages=[ 'ansible', ],