93a9a05c0ef24f19b73099156a3753cb754bfcda
[debian/gnuradio] / grc / scripts / grc
1 #!/usr/bin/env python
2 """
3 Copyright 2008 Free Software Foundation, Inc.
4 This file is part of GNU Radio
5
6 GNU Radio Companion is free software; you can redistribute it and/or
7 modify it under the terms of the GNU General Public License
8 as published by the Free Software Foundation; either version 2
9 of the License, or (at your option) any later version.
10
11 GNU Radio Companion is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA
19 """
20
21 from gnuradio.grc.platforms.base.Constants import VERSION, FLOW_GRAPH_FILE_EXTENSION
22 from optparse import OptionParser
23
24 if __name__ == "__main__":
25         usage = 'usage: %%prog [options] [optional_flow_graphs%s]'%FLOW_GRAPH_FILE_EXTENSION
26         version = """
27 GNU Radio Companion %s
28
29 This program is part of GNU Radio
30 GRC comes with ABSOLUTELY NO WARRANTY.
31 This is free software,
32 and you are welcome to redistribute it.
33 """%VERSION
34         parser = OptionParser(usage=usage, version=version)
35         (options, args) = parser.parse_args()
36         from gnuradio.grc.platforms.python.Platform import Platform
37         from gnuradio.grc.gui.ActionHandler import ActionHandler
38         ActionHandler(args, Platform())
39