Add a private-requirements.txt for personal changes to how things are installed. Good for installing libs as working dirs.

This commit is contained in:
Ned Batchelder
2013-04-30 15:55:30 -04:00
parent 3e314a2c9e
commit 091ca9c3f0
4 changed files with 9 additions and 5 deletions

View File

@@ -174,6 +174,9 @@ end
desc "Install all python prerequisites for the lms and cms"
task :install_python_prereqs do
sh('pip install -r requirements.txt')
if File.file?("private-requirements.txt")
sh('pip install -r private-requirements.txt')
end
end
task :predjango do