Add manage.py to the package

Add the Django manage.py script to the package so that it can be used
when installing the server without checking out the code.

Issue: HIC-264
Change-Id: I8f1b70fd1238f909988d7cfcde4a9ef0b3f81ca4
diff --git a/setup.py b/setup.py
index e1475dc..5d312cd 100755
--- a/setup.py
+++ b/setup.py
@@ -16,6 +16,7 @@
     packages=find_packages(),
     package_data={"": ["*.html", "*.css", "*.js"]},
     python_requires="==3.6.*",
+    scripts=["manage.py"],
     install_requires=[
         "certifi==2018.8.24",
         "chardet==3.0.4",