All the library requirements for Mozilla's Web application base template.
Перейти к файлу
Fred Wenzel f06c4d38a7 Added test-utils 2011-01-06 16:37:27 -08:00
bin adding django-celery 2010-12-15 16:08:16 -08:00
lib/python adding django-celery 2010-12-15 16:08:16 -08:00
packages Added nose and django-nose 2011-01-06 16:13:00 -08:00
src Added test-utils 2011-01-06 16:37:27 -08:00
.gitignore Added gitignore file. 2010-12-29 15:40:55 -08:00
.gitmodules Added test-utils 2011-01-06 16:37:27 -08:00
README.rst Added a readme file. 2010-12-29 15:08:27 -08:00
vendor.pth Added test-utils 2011-01-06 16:37:27 -08:00

README.rst

Dependencies for `Playdoh <http://github.com/fwenzel/playdoh>`_.

It goes something like this::

    pip install --no-install --build=vendor/packages --src=vendor/src -I -r requirements/dev.txt
    find packages src -type d -depth 1 >| vendor.pth

    git init
    for f in src/*; do
        pushd $f >/dev/null && REPO=$(git config remote.origin.url) && popd > /dev/null && git submodule add $REPO $f
        done
    git add .