a python library to draw with ASCII (but with Unicode)
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.
|
|
|
from setuptools import setup
|
|
|
|
|
|
|
|
setup(
|
|
|
|
name='asciiWriter',
|
|
|
|
version='0.0.1',
|
|
|
|
author='Gijs de Heij, Manetta Berends',
|
|
|
|
author_email='info@varia.zone',
|
|
|
|
packages=['asciiWriter', 'asciiWriter.examples'],
|
|
|
|
scripts=[],
|
|
|
|
package_data={'asciiWriter.examples': [
|
|
|
|
'data/language.txt',
|
|
|
|
'data/blobs.png',
|
|
|
|
'data/blobs-small.png',
|
|
|
|
'data/shapes.png'
|
|
|
|
]},
|
|
|
|
url='https://git.vvvvvvaria.org/mb/asciiWriter',
|
|
|
|
license='LICENSE.txt',
|
|
|
|
keywords=['plaintext', 'layout software', 'ascii art'],
|
|
|
|
description='A python library to draw with ASCII (but with Unicode)',
|
|
|
|
long_description=open('README.txt').read(),
|
|
|
|
install_requires=[
|
|
|
|
"pillow"
|
|
|
|
],
|
|
|
|
)
|