Remove demo script from edgetpuvision.

It will be packaged separately along with .tflite model files,
label file, and video file.

Change-Id: I7166bd2993a19d10a267f55e08eb478d3fa1910e
diff --git a/bin/edgetpu_demo b/bin/edgetpu_demo
deleted file mode 100755
index d985942..0000000
--- a/bin/edgetpu_demo
+++ /dev/null
@@ -1,24 +0,0 @@
-#!/bin/bash
-
-#readonly VIDEO_FILE=""
-readonly TEST_DATA="$(python3 -c 'import edgetpu; import os; print(os.path.dirname(edgetpu.__file__))')/test_data"
-readonly TPU_MODEL_FILE="${TEST_DATA}/mobilenet_ssd_v2_coco_quant_postprocess_edgetpu.tflite"
-readonly LABELS_FILE="${TEST_DATA}/coco_labels.txt"
-
-if [ "$1" = "--device" ]; then
-  python3 -m edgetpuvision.detect \
-      --source "${VIDEO_FILE}" \
-      --model="${TPU_MODEL_FILE}" \
-      --labels="${LABELS_FILE}" \
-      --fullscreen
-elif [ "$1" = "--stream" ]; then
-  python3 -m edgetpuvision.detect_server \
-      --source "${VIDEO_FILE}" \
-      --model="${TPU_MODEL_FILE}" \
-      --labels="${LABELS_FILE}"
-else
-  echo "Run on-device inference:"
-  echo "  $0 --device"
-  echo "Run streaming server:"
-  echo "  $0 --stream"
-fi
diff --git a/setup.py b/setup.py
index eaa0313..997fba2 100644
--- a/setup.py
+++ b/setup.py
@@ -18,7 +18,6 @@
         'protobuf>=3.0.0',
         'edgetpu',
     ],
-    scripts=['bin/edgetpu_demo'],
     entry_points = {
         'console_scripts': ['edgetpu_classify=edgetpuvision.classify:main',
                             'edgetpu_classify_server=edgetpuvision.classify_server:main',