aboutsummaryrefslogtreecommitdiffstats
path: root/python-packages/install
diff options
context:
space:
mode:
Diffstat (limited to 'python-packages/install')
-rwxr-xr-xpython-packages/install13
1 files changed, 13 insertions, 0 deletions
diff --git a/python-packages/install b/python-packages/install
new file mode 100755
index 000000000..73d88fec2
--- /dev/null
+++ b/python-packages/install
@@ -0,0 +1,13 @@
+#!/usr/bin/env python
+
+"""Install all packages in non-editable mode (no -e on pip install)."""
+
+from os import path
+import subprocess
+
+# install all packages
+subprocess.check_call(
+ (
+ path.join(".", "cmd_pkgs_in_dep_order.py") + " pip install .[dev]"
+ ).split()
+)