mirror of
https://github.com/neogeek23/drawshare.git
synced 2026-02-04 02:58:16 +00:00
13 lines
425 B
Plaintext
13 lines
425 B
Plaintext
|
|
#!/home/brad/Development/ChannelsDrawShare/venv/bin/python
|
||
|
|
# EASY-INSTALL-ENTRY-SCRIPT: 'Twisted==18.9.0','console_scripts','tkconch'
|
||
|
|
__requires__ = 'Twisted==18.9.0'
|
||
|
|
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('Twisted==18.9.0', 'console_scripts', 'tkconch')()
|
||
|
|
)
|