diff --git a/Makefile b/Makefile index aded9b587..d02a13214 100644 --- a/Makefile +++ b/Makefile @@ -128,7 +128,7 @@ pyenv: python3 -m venv pyenv . pyenv/bin/activate && \ pip install -U pip && \ - pip install autopep8 azdev azure-mgmt-loganalytics==0.2.0 colorama ruamel.yaml wheel && \ + pip install -r requirements.txt && \ azdev setup -r . && \ sed -i -e "s|^dev_sources = $(PWD)$$|dev_sources = $(PWD)/python|" ~/.azure/config diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 000000000..35bed2595 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,5 @@ +autopep8==1.6.0 +azdev==0.1.37 +azure-mgmt-loganalytics==0.2.0 +colorama==0.4.5 +ruamel.yaml==0.17.21