Added ascii2img installation

Added uninstallation script
This commit is contained in:
Samuel
2018-03-22 16:41:17 +08:00
parent 666b828af3
commit 7a6a0581a3
1152 changed files with 166080 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
# Shim to wrap setup.py invocation with setuptools
SETUPTOOLS_SHIM = (
"import setuptools, tokenize;__file__=%r;"
"f=getattr(tokenize, 'open', open)(__file__);"
"code=f.read().replace('\\r\\n', '\\n');"
"f.close();"
"exec(compile(code, __file__, 'exec'))"
)