YAML parser to generate inventory data

This implementation is designed to address multiple inventory data
properties for FRU's and others. For now, FRU YAML is available for
consumption under phosphor-dbus-interfaces repository.

As the BMC, PROC's and other MISC YAML's are added by development,
we would include them in this file which would generate a single
inventory.py file ready to use by robot test and others.

Resolves openbmc/openbmc-test-automation#330

Change-Id: If5f96c8c3701ad6d14f7cb9418c10277e885f267
Signed-off-by: George Keishing <gkeishin@in.ibm.com>
diff --git a/data/inventory.py b/data/inventory.py
new file mode 100644
index 0000000..2796fe7
--- /dev/null
+++ b/data/inventory.py
@@ -0,0 +1,12 @@
+inventory_dict = {
+    "fru": [
+        "PrettyName", 
+        "Present", 
+        "PartNumber", 
+        "SerialNumber", 
+        "Manufacturer", 
+        "BuildDate", 
+        "Model", 
+        "Version"
+    ]
+}
\ No newline at end of file