Use python-flavors. Switch to manuall install method because there is no setup.py anymore. Switch to DISTVERSION. Submitter takes maintainership. Changelogs: https://github.com/ihabunek/toot/releases/tag/0.43.0 https://github.com/ihabunek/toot/releases/tag/0.44.0 https://github.com/ihabunek/toot/releases/tag/0.44.1 https://github.com/ihabunek/toot/releases/tag/0.45.0 https://github.com/ihabunek/toot/releases/tag/0.46.0 https://github.com/ihabunek/toot/releases/tag/0.47.0 https://github.com/ihabunek/toot/releases/tag/0.47.1 PR: 283634
9 lines
203 B
Plaintext
9 lines
203 B
Plaintext
#!%%PYTHON_CMD%%
|
|
# -*- coding: utf-8 -*-
|
|
import re
|
|
import sys
|
|
from toot.cli import cli
|
|
if __name__ == '__main__':
|
|
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
|
|
sys.exit(cli())
|