aboutsummaryrefslogtreecommitdiffstats
path: root/python-packages/install
diff options
context:
space:
mode:
authorSteve Klebanoff <steve.klebanoff@gmail.com>2019-01-12 00:53:15 +0800
committerSteve Klebanoff <steve.klebanoff@gmail.com>2019-01-12 00:53:15 +0800
commitfaee7513952a4b87d5f9e9dde9deb20126f58834 (patch)
tree8168000e484e621e1526cf48fb0f979a6d98d972 /python-packages/install
parent742e5e039dd4e821209b5511fb6a194d11c6291c (diff)
parent2cf57a48dd2857dd5cf2f31f4c60dd47ae4d34a5 (diff)
downloaddexon-sol-tools-faee7513952a4b87d5f9e9dde9deb20126f58834.tar
dexon-sol-tools-faee7513952a4b87d5f9e9dde9deb20126f58834.tar.gz
dexon-sol-tools-faee7513952a4b87d5f9e9dde9deb20126f58834.tar.bz2
dexon-sol-tools-faee7513952a4b87d5f9e9dde9deb20126f58834.tar.lz
dexon-sol-tools-faee7513952a4b87d5f9e9dde9deb20126f58834.tar.xz
dexon-sol-tools-faee7513952a4b87d5f9e9dde9deb20126f58834.tar.zst
dexon-sol-tools-faee7513952a4b87d5f9e9dde9deb20126f58834.zip
Merge branch 'development' into feature/instant/asset-buyer-check-liquidity
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()
+)