manetta
4 years ago
1 changed files with 39 additions and 0 deletions
@ -0,0 +1,39 @@ |
|||||
|
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=[ |
||||
|
'asciiWriter/examples/bin/draw.py', |
||||
|
'asciiWriter/examples/bin/image.py', |
||||
|
'asciiWriter/examples/bin/image_random_char.py', |
||||
|
'asciiWriter/examples/bin/image_rotate.py', |
||||
|
'asciiWriter/examples/bin/image_sentence.py', |
||||
|
'asciiWriter/examples/bin/line.py', |
||||
|
'asciiWriter/examples/bin/line_random_char.py', |
||||
|
'asciiWriter/examples/bin/multi_column_page.py', |
||||
|
'asciiWriter/examples/bin/repeated_line.py', |
||||
|
'asciiWriter/examples/bin/repeated_sinus.py', |
||||
|
'asciiWriter/examples/bin/repeated_sinus_amplitude_variation.py', |
||||
|
'asciiWriter/examples/bin/single_column_page.py', |
||||
|
'asciiWriter/examples/bin/sinus.py', |
||||
|
'asciiWriter/examples/bin/test.py', |
||||
|
], |
||||
|
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" |
||||
|
], |
||||
|
) |
Loading…
Reference in new issue