summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrsiddharth <rsd@gnu.org>2018-08-19 13:25:39 +0000
committerrsiddharth <rsd@gnu.org>2018-08-19 13:25:39 +0000
commited20cdb99c3714fce98cd820b284717aca3785f9 (patch)
tree3370f58f3d3883cdd29e113dbae6c6b61a7e3fe9
parent1c8ca21321bb42072915d5961e25c632be1a56a7 (diff)
Makefile: dev-packages -> dev-env.
-rw-r--r--Makefile9
1 files changed, 4 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index 81e9e62..66c0291 100644
--- a/Makefile
+++ b/Makefile
@@ -70,9 +70,8 @@ clean-docs:
.PHONY: clean-build clean-pyc clean-venv clean-docs
-dev-packages:
- @pip install -U nose mock restructuredtext_lint
- @pip install -U wheel twine
- @pip install -U Sphinx
+dev-env:
+ pip install -r requirements.txt
+ python setup.py develop
-.PHONY: dev-packages
+.PHONY: dev-env