You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

setuptools_build.py 278B

12345678
  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. )