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