Add g-pypi script for distutils installation.
authorW. Trevor King <wking@drexel.edu>
Tue, 7 Jun 2011 11:52:01 +0000 (07:52 -0400)
committerW. Trevor King <wking@drexel.edu>
Tue, 7 Jun 2011 11:52:26 +0000 (07:52 -0400)
scripts/g-pypi [new file with mode: 0755]

diff --git a/scripts/g-pypi b/scripts/g-pypi
new file mode 100755 (executable)
index 0000000..89f6bde
--- /dev/null
@@ -0,0 +1,12 @@
+#!/usr/bin/env python
+
+from g_pypi.cli import main
+
+
+try:
+    main()
+except Exception, e:
+    print e
+    raise  # for debugging
+    sys.exit(1)
+sys.exit(0)