Skip to content

Commit

Permalink
Create helper
Browse files Browse the repository at this point in the history
  • Loading branch information
dluman committed Sep 4, 2023
1 parent 6895da5 commit 7af8eb0
Showing 1 changed file with 12 additions and 0 deletions.
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 7af8eb0

Please sign in to comment.