Generate Python bindings on build.
diff --git a/cper-parse.i b/cper-parse.i
new file mode 100644
index 0000000..fa12bc3
--- /dev/null
+++ b/cper-parse.i
@@ -0,0 +1,15 @@
+%module cperparse
+%{
+ #include "cper-parse.h"
+ #include "json.h"
+ #include <stdio.h>
+%}
+
+//Library function declarations for module export.
+json_object* cper_to_ir(FILE* cper_file);
+void ir_to_cper(json_object* ir, FILE* out);
+
+//JSON function symbol export.
+const char *json_object_to_json_string(struct json_object *obj);
+struct json_object *json_object_from_file(const char *filename);
+struct json_object *json_tokener_parse(const char *str);
\ No newline at end of file