mirror of
https://github.com/kennethreitz-archive/heroku-splinder.git
synced 2026-06-19 23:10:58 +00:00
11 lines
411 B
Python
Executable File
11 lines
411 B
Python
Executable File
#!/usr/bin/env python2.7
|
|
import os; activate_this=os.path.join(os.path.dirname(__file__), 'activate_this.py'); execfile(activate_this, dict(__file__=activate_this)); del os, activate_this
|
|
# EASY-INSTALL-ENTRY-SCRIPT: 'pip==1.0.2','console_scripts','pip'
|
|
__requires__ = 'pip==1.0.2'
|
|
import sys
|
|
from pkg_resources import load_entry_point
|
|
|
|
sys.exit(
|
|
load_entry_point('pip==1.0.2', 'console_scripts', 'pip')()
|
|
)
|