OSDN Git Service

PEP8対応
[stux/ultron.git] / venv / Lib / site-packages / pip / utils / setuptools_build.py
1 # Shim to wrap setup.py invocation with setuptools
2 SETUPTOOLS_SHIM = (
3     "import setuptools, tokenize;__file__=%r;"
4     "f=getattr(tokenize, 'open', open)(__file__);"
5     "code=f.read().replace('\\r\\n', '\\n');"
6     "f.close();"
7     "exec(compile(code, __file__, 'exec'))"
8 )