Skip to content
This repository has been archived by the owner on Jul 28, 2024. It is now read-only.

Commit

Permalink
binary file added
Browse files Browse the repository at this point in the history
  • Loading branch information
Jimut123 committed Apr 7, 2019
1 parent afd6438 commit fa45efb
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions bin/wisp
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
#!/bin/python
# EASY-INSTALL-ENTRY-SCRIPT: 'wisp==0.0.8b0','console_scripts','wisp'
__requires__ = 'wisp==0.0.8b0'
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('wisp==0.0.8b0', 'console_scripts', 'wisp')()
)

0 comments on commit fa45efb

Please sign in to comment.