diff --git a/Makefile b/Makefile index 8dcbbc3..9fbf8e3 100644 --- a/Makefile +++ b/Makefile @@ -79,15 +79,7 @@ install-dev: set -xe && if [ "$$REQUIREMENTS" = "devel" ]; then \ pip install -U --force-reinstall git+https://github.com/kennethreitz/requests; \ elif [ "$$REQUIREMENTS" = "minimal" ]; then \ - # FIXME: Looking for a tool that parses setup.py requirements and installs minimum viable version - pip install -U --force-reinstall \ - lxml==3.1 \ - requests==2.0.1 \ - requests_toolbelt==0.4.0 \ - click-threading==0.1.2 \ - click-log==0.1.3 \ - atomicwrites==0.1.7 \ - click==5.0; \ + pip install -U --force-reinstall $$(python setup.py --quiet minimal_requirements); \ fi .PHONY: docs