mirror of
https://github.com/kennethreitz-archive/heroku-splinder.git
synced 2026-06-16 21:40:59 +00:00
11 lines
453 B
Python
Executable File
11 lines
453 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: 'setuptools==0.6c11','console_scripts','easy_install'
|
|
__requires__ = 'setuptools==0.6c11'
|
|
import sys
|
|
from pkg_resources import load_entry_point
|
|
|
|
sys.exit(
|
|
load_entry_point('setuptools==0.6c11', 'console_scripts', 'easy_install')()
|
|
)
|