mirror of
https://github.com/microsoft/PowerToys.git
synced 2025-12-17 12:18:00 +01:00
11 lines
346 B
Python
11 lines
346 B
Python
|
|
#!d:\github\WinAlfred\WinAlfred\bin\Debug\PythonEnv\2.7\Scripts\python.exe
|
||
|
|
# EASY-INSTALL-ENTRY-SCRIPT: 'pip==1.4.1','console_scripts','pip-2.7'
|
||
|
|
__requires__ = 'pip==1.4.1'
|
||
|
|
import sys
|
||
|
|
from pkg_resources import load_entry_point
|
||
|
|
|
||
|
|
if __name__ == '__main__':
|
||
|
|
sys.exit(
|
||
|
|
load_entry_point('pip==1.4.1', 'console_scripts', 'pip-2.7')()
|
||
|
|
)
|