aboutsummaryrefslogtreecommitdiff
blob: f79da186092e07886514ae506334fd092ffe7ee4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/usr/bin/env python
# -*- coding: utf-8 -*-

"""
    g_octave
    ~~~~~~~~
    
    g-octave's main script.
    
    :copyright: (c) 2010 by Rafael Goncalves Martins
    :license: GPL-2, see LICENSE for more details.
"""

from g_octave.cli import Cli
import sys

if __name__ == '__main__':
    cli = Cli()
    sys.exit(cli.run())