mirror of
https://github.com/roytam1/palemoon26.git
synced 2026-05-27 08:00:16 +00:00
9 lines
267 B
Python
9 lines
267 B
Python
# Called from virtualenv with parameters:
|
|
# [--always-unzip] [-v] egg_name
|
|
# So, the distribute egg is always the last argument.
|
|
import sys
|
|
eggname = sys.argv[-1]
|
|
sys.path.insert(0, eggname)
|
|
from setuptools.command.easy_install import main
|
|
main(sys.argv[1:])
|