Ive used this before as a reliable bootstrap.py free bootstrap method.
``` virtualenv . - bin/pip install --upgrade pip zc.buildout
bin/buildout -c travis.cfg annotate | tee annotate.txt | grep -E 'setuptools= |zc.buildout= ' | sed 's/= /==/' > requirements.txt
cat annotate.txt
cat requirements.txt - bin/pip install --upgrade -r requirements.txt
bin/buildout -qNc travis.cfg
```
What would be nice is if buildout can be used generate a requirements.txt so it would be
```
virtualenv .
pip install zc.buildout
pip install `bin/buildout requirements`
bin/buildout
```
--
You received this message because you are subscribed to the Google Groups "Buildout Development" group.
To unsubscribe from this group and stop receiving emails from it, send an email to buildout-develop...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Ive used this before as a reliable bootstrap.py free bootstrap method.
``` virtualenv . - bin/pip install --upgrade pip zc.buildout
bin/buildout -c travis.cfg annotate | tee annotate.txt | grep -E 'setuptools= |zc.buildout= ' | sed 's/= /==/' > requirements.txt
cat annotate.txt
cat requirements.txt - bin/pip install --upgrade -r requirements.txt
bin/buildout -qNc travis.cfg
```What would be nice is if buildout can be used generate a requirements.txt so it would be
```
virtualenv .
pip install zc.buildout
pip install `bin/buildout requirements`
bin/buildout
```
Jim