Added spinit file under custom/models to get the correct startup
options for ngspice.  Made a "create_project" script to create some
basic project subdirectories and seed them with links to the
appropriate startup files.  Modified the "preproc" script so that
it maintains the file permissions from input to output.
diff --git a/common/preproc.py b/common/preproc.py
index 709ea11..9612921 100755
--- a/common/preproc.py
+++ b/common/preproc.py
@@ -584,4 +584,11 @@
     runpp(keys, keyrex, defines, ccomm, incdirs, inputfile, ofile)
     if ofile != sys.stdout:
         ofile.close()
+
+    # Set mode of outputfile to be equal to that of inputfile (if not stdout)
+    if outputfile:
+        statinfo = os.stat(inputfile)
+        mode = statinfo.st_mode
+        os.chmod(outputfile, mode)
+
     sys.exit(0)