Updated compiled ascii2img

This commit is contained in:
Samuel
2018-03-22 18:24:20 +08:00
parent 66c5302666
commit 5035afad6a
219 changed files with 39 additions and 23880 deletions

9
ascii2img/setup.py Normal file
View File

@@ -0,0 +1,9 @@
from distutils.core import setup
setup(name='ascii2img',
version='1.0',
scripts=['./src/__main__.py'],
packages=['PIL'],
package_dir={'PIL': 'src'},
package_data={'PIL': ['*']},
)