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

Revert the setup.cfg infra and go back to requirements.txt

I've continually run into problems with the setup.cfg route that I'm not
interested in investing the time to debug and fix. Looking around it doesn't
seem to be very common yet so I've had a hard time finding help/docs etc.
This commit is contained in:
Ross McFarland
2018-04-20 12:35:58 -07:00
parent 33efc522c6
commit f86c06d304
6 changed files with 80 additions and 75 deletions

View File

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