summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorNick Groenen <zoni@zoni.nl>2013-03-11 14:28:38 +0100
committerNick Groenen <zoni@zoni.nl>2013-03-11 14:47:30 +0100
commit191376c9c29a7b069ba618a3b59ecad129d4e320 (patch)
tree0d15868076778b72969dac8b9eb56c1767667545 /README.md
parent8fb868d5aa7bbe4d19f83367ba86d4ac4deb6d25 (diff)
Make pip install distribute in a virtualenv optional
pip install distribute currentlyfails on Python 3, this way people can skip installing it. It's included by default to remain backward- compatible
Diffstat (limited to 'README.md')
-rw-r--r--README.md3
1 files changed, 3 insertions, 0 deletions
diff --git a/README.md b/README.md
index 6289fdb..816610d 100644
--- a/README.md
+++ b/README.md
@@ -66,12 +66,15 @@ Creates Python virtualenv.
**systempkgs** — Copy system site-packages into virtualenv. Default: don't
+**distribute** — Include distribute in the virtualenv. Default: true
+
python::virtualenv { '/var/www/project1':
ensure => present,
version => 'system',
requirements => '/var/www/project1/requirements.txt',
proxy => 'http://proxy.domain.com:3128',
systempkgs => true,
+ distribute => false,
}
### python::gunicorn