configuration/local/bin/alot

13 lines
367 B
Plaintext
Raw Normal View History

2019-01-22 16:42:40 +01:00
#!/usr/bin/python3
2020-08-20 11:54:15 +02:00
# EASY-INSTALL-ENTRY-SCRIPT: 'alot==0.9.1','console_scripts','alot'
__requires__ = 'alot==0.9.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(
2020-08-20 11:54:15 +02:00
load_entry_point('alot==0.9.1', 'console_scripts', 'alot')()
2018-02-26 11:59:45 +01:00
)