export as image

This commit is contained in:
2022-01-06 21:38:47 +01:00
parent 5087df5bdd
commit 743c0306da
2 changed files with 36 additions and 13 deletions

10
setup.py Normal file
View File

@ -0,0 +1,10 @@
from setuptools import setup, find_packages
setup(
name='lindenmayer',
version='0.1.0',
packages=find_packages(include=['lindenmayer']),
install_requires=[
"pillow",
],
)