Convert build process to autotools

Replaced the use of a manual Makefile with the use of autotools to
automatically verify and generate the necessary build files. Follow the
steps outlined within the README.md file to build the package.

Change-Id: Id7be6220d32e457b1171d5d98123c6d8f317b380
Signed-off-by: Matthew Barth <msbarth@us.ibm.com>
diff --git a/setup.py.in b/setup.py.in
new file mode 100644
index 0000000..93bd8a6
--- /dev/null
+++ b/setup.py.in
@@ -0,0 +1,7 @@
+from distutils.core import setup
+setup(name='phosphor-mapper',
+      version='1.0',
+      package_dir={'':'@top_srcdir@'},
+      packages=['obmc.mapper'],
+      scripts=['@top_srcdir@/phosphor-mapper']
+      )