configuration/local/bin/alot

13 lines
367 B
Plaintext
Raw Normal View History

2019-01-22 16:42:40 +01:00
#!/usr/bin/python3
2019-06-03 10:29:32 +02:00
# EASY-INSTALL-ENTRY-SCRIPT: 'alot==0.8.1','console_scripts','alot'
__requires__ = 'alot==0.8.1'
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(
2019-06-03 10:29:32 +02:00
load_entry_point('alot==0.8.1', 'console_scripts', 'alot')()
2018-02-26 11:59:45 +01:00
)