|
|
@@ -63,6 +63,7 @@ Input Options:
|
|
|
no: Do not install
|
|
|
build-env: install to virtual env for build matter
|
|
|
separate: install to another virtual env (out/python_env)
|
|
|
+ --extra_packages PACKAGES Install extra Python packages from PyPI
|
|
|
--include_yamltests Whether to install the matter_yamltests wheel.
|
|
|
-z --pregen_dir DIRECTORY Directory where generated zap files have been pre-generated.
|
|
|
"
|
|
|
@@ -96,6 +97,10 @@ while (($#)); do
|
|
|
install_wheel=$2
|
|
|
shift
|
|
|
;;
|
|
|
+ --extra_packages)
|
|
|
+ extra_packages=$2
|
|
|
+ shift
|
|
|
+ ;;
|
|
|
--include_yamltests)
|
|
|
include_yamltests="yes"
|
|
|
;;
|
|
|
@@ -160,6 +165,10 @@ if [ -n "$include_yamltests" ]; then
|
|
|
)
|
|
|
fi
|
|
|
|
|
|
+if [ -n "$extra_packages" ]; then
|
|
|
+ WHEEL+=("$extra_packages")
|
|
|
+fi
|
|
|
+
|
|
|
if [ "$install_wheel" = "no" ]; then
|
|
|
exit 0
|
|
|
elif [ "$install_wheel" = "separate" ]; then
|