Commit 42d9936b by James Tanner

Add ansible-galaxy python dependencies

parent 764c6f74
......@@ -3,7 +3,7 @@ Ansible Debian Package
To create an Ansible DEB package:
sudo apt-get install python-paramiko python-yaml python-jinja2
sudo apt-get install python-paramiko python-yaml python-jinja2 python-httplib2
sudo apt-get install cdbs debhelper dpkg-dev git-core reprepro python-support fakeroot
git clone git://github.com/ansible/ansible.git
cd ansible
......
......@@ -8,6 +8,6 @@ Homepage: http://ansible.github.com/
Package: ansible
Architecture: all
Depends: python, python-support (>= 0.90), python-jinja2, python-yaml, python-paramiko, sshpass
Depends: python, python-support (>= 0.90), python-jinja2, python-yaml, python-paramiko, python-httplib2, sshpass
Description: Ansible Application
Ansible is a extra-simple tool/API for doing 'parallel remote things' over SSH executing commands, running "modules", or executing larger 'playbooks' that can serve as a configuration management or deployment system.
......@@ -25,6 +25,7 @@ Requires: python26-PyYAML
Requires: python26-paramiko
Requires: python26-jinja2
Requires: python26-keyczar
Requires: python26-httplib2
%else
BuildRequires: python2-devel
......@@ -32,6 +33,7 @@ Requires: PyYAML
Requires: python-paramiko
Requires: python-jinja2
Requires: python-keyczar
Requires: python-httplib2
%endif
Requires: sshpass
......
......@@ -22,7 +22,7 @@ setup(name='ansible',
author_email='michael@ansibleworks.com',
url='http://ansibleworks.com/',
license='GPLv3',
install_requires=['paramiko', 'jinja2', "PyYAML"],
install_requires=['paramiko', 'jinja2', "PyYAML", "httplib2"],
package_dir={ 'ansible': 'lib/ansible' },
packages=[
'ansible',
......@@ -42,6 +42,7 @@ setup(name='ansible',
'bin/ansible',
'bin/ansible-playbook',
'bin/ansible-pull',
'bin/ansible-galaxy',
'bin/ansible-doc'
],
data_files=data_files
......
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