mirror of
https://github.com/planetmint/planetmint.git
synced 2025-11-25 06:55:45 +00:00
13 lines
464 B
Python
Executable File
13 lines
464 B
Python
Executable File
#!/home/deffuls/work/planetmint/planetmint_env/bin/python3
|
|
# EASY-INSTALL-ENTRY-SCRIPT: 'charset-normalizer==2.0.12','console_scripts','normalizer'
|
|
__requires__ = 'charset-normalizer==2.0.12'
|
|
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('charset-normalizer==2.0.12', 'console_scripts', 'normalizer')()
|
|
)
|