projects
/
g-pypi.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
95a5b8d
)
Add g-pypi script for distutils installation.
author
W. Trevor King
<wking@drexel.edu>
Tue, 7 Jun 2011 11:52:01 +0000
(07:52 -0400)
committer
W. Trevor King
<wking@drexel.edu>
Tue, 7 Jun 2011 11:52:26 +0000
(07:52 -0400)
scripts/g-pypi
[new file with mode: 0755]
patch
|
blob
diff --git a/scripts/g-pypi
b/scripts/g-pypi
new file mode 100755
(executable)
index 0000000..
89f6bde
--- /dev/null
+++ b/
scripts/g-pypi
@@ -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)