configuration/local/bin/alot

13 lines
361 B
Plaintext
Raw Normal View History

2018-02-26 11:59:45 +01:00
#!/usr/bin/python2
2018-03-25 14:02:05 +02:00
# EASY-INSTALL-ENTRY-SCRIPT: 'alot==0.7','console_scripts','alot'
__requires__ = 'alot==0.7'
2018-02-26 11:59:45 +01:00
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(
2018-03-25 14:02:05 +02:00
load_entry_point('alot==0.7', 'console_scripts', 'alot')()
2018-02-26 11:59:45 +01:00
)