From 893a9e8158950ac184913334d1c6409697045389 Mon Sep 17 00:00:00 2001 From: JSCHILL1 Date: Thu, 2 Apr 2009 14:49:40 -0500 Subject: [PATCH] Added TODOs --- scour.py | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/scour.py b/scour.py index d7a24d9..65196fc 100644 --- a/scour.py +++ b/scour.py @@ -19,4 +19,19 @@ # along with Carve. If not, see http://www.gnu.org/licenses/ . # -print "Scour is here!" +# TODOs: +# +# 0) Output program name and version +# 1) Process input arguments -i input.svg -o output.svg +# 2) Issue errors if any of those arguments are not present (display syntax) +# 3) Issue error if input.svg does not exist +# 4) Create the output file (issue error if cannot create) +# 5) Copy input file text to output file text +# + +APP = "Scour" +VER = "0.01" +COPYRIGHT = "Copyright Jeff Schiller, 2009" + +print APP + ' version ' + VER +print COPYRIGHT \ No newline at end of file