37 lines
No EOL
1.2 KiB
Python
37 lines
No EOL
1.2 KiB
Python
# Scour
|
|
# Version 0.01
|
|
#
|
|
# Copyright 2009 Jeff Schiller
|
|
#
|
|
# This file is part of Scour, http://www.codedread.com/scour/
|
|
#
|
|
# Scour is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# Scour is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with Carve. If not, see http://www.gnu.org/licenses/ .
|
|
#
|
|
|
|
# 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 |