From 1b7e61a42581b6172dbc312fc692d6cd2d0a73f5 Mon Sep 17 00:00:00 2001 From: Ian Weller Date: Sun, 28 Sep 2008 19:40:10 -0500 Subject: Move frontend, write exec script --- fedora_business_cards/frontend.py | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 fedora_business_cards/frontend.py (limited to 'fedora_business_cards/frontend.py') diff --git a/fedora_business_cards/frontend.py b/fedora_business_cards/frontend.py new file mode 100644 index 0000000..25fc99d --- /dev/null +++ b/fedora_business_cards/frontend.py @@ -0,0 +1,31 @@ +### +# fedora-business-cards - for rendering Fedora contributor business cards +# Copyright (C) 2008 Ian Weller +# +# This program 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 2 of the License, or +# (at your option) any later version. +# +# This program 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 this program; if not, write to the Free Software Foundation, Inc., +# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. +### + +""" +Frontend to the business card generator. Theoretically expandable to GUI and +whatnot, but for now just has a command-line interface. +""" + +from optparse import OptionParser + +def cmdline(): + parser = OptionParser() + parser.add_option("-d", "--dpi", dest="dpi", default=300, + help="DPI of exported PNG") + options = parser.parse_args()[0] -- cgit