2018-08-25 12:14:54 +02:00
|
|
|
#!/Users/Esthi/thesis_ek/thesisenv/bin/python
|
|
|
|
# EASY-INSTALL-ENTRY-SCRIPT: 'setuptools==33.1.1','console_scripts','easy_install'
|
|
|
|
__requires__ = 'setuptools==33.1.1'
|
2018-06-27 09:56:44 +02:00
|
|
|
import re
|
|
|
|
import sys
|
2018-08-25 12:14:54 +02:00
|
|
|
from pkg_resources import load_entry_point
|
2018-06-27 09:56:44 +02:00
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0])
|
2018-08-25 12:14:54 +02:00
|
|
|
sys.exit(
|
|
|
|
load_entry_point('setuptools==33.1.1', 'console_scripts', 'easy_install')()
|
|
|
|
)
|