Weidong Shao 486c596323 Replace cookbooks for IceHouse release
Change-Id: Ibb6bdd3ed7795b86f773f9cb6ce1dfffb9b79faf
2014-08-07 08:36:02 +00:00

20 lines
779 B
Ruby

name "python"
maintainer "Noah Kantrowitz"
maintainer_email "noah@coderanger.net"
license "Apache 2.0"
description "Installs Python, pip and virtualenv. Includes LWRPs for managing Python packages with `pip` and `virtualenv` isolated Python environments."
version "1.4.6"
depends "build-essential"
depends "yum-epel"
recipe "python", "Installs python, pip, and virtualenv"
recipe "python::package", "Installs python using packages."
recipe "python::source", "Installs python from source."
recipe "python::pip", "Installs pip from source."
recipe "python::virtualenv", "Installs virtualenv using the python_pip resource."
%w{ debian ubuntu centos redhat fedora freebsd smartos }.each do |os|
supports os
end