/usr/lib/python3.6/site-packages/setuptools
NameSizeModeActions
command/-0755rm
extern/-0755rm
_vendor/-0755rm
__pycache__/-0755rm
archive_util.py65920644editdlrm
build_meta.py56710644editdlrm
config.py180060644editdlrm
depends.py58370644editdlrm
dep_util.py9350644editdlrm
dist.py426130644editdlrm
extension.py17290644editdlrm
glibc.py31460644editdlrm
glob.py52070644editdlrm
launch.py7870644editdlrm
lib2to3_ex.py20130644editdlrm
monkey.py52610644editdlrm
msvc.py408770644editdlrm
namespaces.py31990644editdlrm
package_index.py403200644editdlrm
pep425tags.py108730644editdlrm
py27compat.py5360644editdlrm
py31compat.py11920644editdlrm
py33compat.py11820644editdlrm
py36compat.py28910644editdlrm
sandbox.py142760644editdlrm
script (dev).tmpl2010644editdlrm
script.tmpl1380644editdlrm
site-patch.py23070644editdlrm
ssl_support.py84920644editdlrm
unicode_utils.py9960644editdlrm
version.py1440644editdlrm
wheel.py77780644editdlrm
windows_support.py7140644editdlrm
__init__.py57000644editdlrm
Edit: /usr/lib/python3.6/site-packages/setuptools/launch.py (787B)
""" Launch the Python script on the command line after setuptools is bootstrapped via import. """ # Note that setuptools gets imported implicitly by the # invocation of this script using python -m setuptools.launch import tokenize import sys def run(): """ Run the script in sys.argv[1] as if it had been invoked naturally. """ __builtins__ script_name = sys.argv[1] namespace = dict( __file__=script_name, __name__='__main__', __doc__=None, ) sys.argv[:] = sys.argv[1:] open_ = getattr(tokenize, 'open', open) script = open_(script_name).read() norm_script = script.replace('\\r\\n', '\\n') code = compile(norm_script, script_name, 'exec') exec(code, namespace) if __name__ == '__main__': run()