Skip to content

Commit

Permalink
Merge branch 'main' of github.com:term-world/world-container
Browse files Browse the repository at this point in the history
  • Loading branch information
dluman committed Sep 4, 2023
2 parents 6ccbd02 + 7af8eb0 commit ce9ab69
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
8 changes: 8 additions & 0 deletions scripts/gatorgrade
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
import re
import sys
from gatorgrade.main import app
if __name__ == '__main__':
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
sys.exit(app())
12 changes: 12 additions & 0 deletions scripts/helper
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
#!/usr/bin/python
# EASY-INSTALL-ENTRY-SCRIPT: 'helper','console_scripts','helper'
__requires__ = 'helper'
import re
import sys
from pkg_resources import load_entry_point

if __name__ == '__main__':
sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0])
sys.exit(
load_entry_point('helper', 'console_scripts', 'helper')()
)

0 comments on commit ce9ab69

Please sign in to comment.