1
0
mirror of https://github.com/github/octodns.git synced 2024-05-11 05:55:00 +00:00

improve setuptools capabilities

This commit is contained in:
Hervé Beraud
2017-11-03 22:31:38 +01:00
parent 6caeb73558
commit 77d2fd1eb4
7 changed files with 94 additions and 79 deletions

View File

@ -19,10 +19,10 @@ if [ ! -d "$VENV_NAME" ]; then
fi
. "$VENV_NAME/bin/activate"
pip install -U -r requirements.txt
pip install -e .
if [ "$ENV" != "production" ]; then
pip install -U -r requirements-dev.txt
pip install -e .[dev]
fi
if [ ! -L ".git/hooks/pre-commit" ]; then