aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'g-octave')
-rwxr-xr-xg-octave19
1 files changed, 19 insertions, 0 deletions
diff --git a/g-octave b/g-octave
new file mode 100755
index 0000000..f79da18
--- /dev/null
+++ b/g-octave
@@ -0,0 +1,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())