Add self-signed cert

Eventually will be running with SSL.
diff --git a/setup.py b/setup.py
index 2ddb129..f5f25e9 100644
--- a/setup.py
+++ b/setup.py
@@ -1,5 +1,7 @@
 from distutils.core import setup
-setup(name='Phosphor REST',
+
+setup(name='obmc-rest',
       version='1.0',
-      scripts=['phosphor-rest']
+      scripts=['phosphor-rest'],
+      data_files=[('obmc-rest', ['cert.pem'])],
       )