Add pillow (PIL) as dependecy

As requested by the owner, it is added to both requirements.txt and
setup.py - see also issue #172 about a possible redundancy/conflict.
This commit is contained in:
KV 2020-10-10 17:26:52 +02:00
parent dabd4ba9c2
commit a94ff3d347
2 changed files with 2 additions and 0 deletions

View File

@ -1,4 +1,5 @@
. .
graphviz graphviz
pillow
pyyaml pyyaml
setuptools setuptools

View File

@ -23,6 +23,7 @@ setup(
long_description_content_type='text/markdown', long_description_content_type='text/markdown',
install_requires=[ install_requires=[
'pyyaml', 'pyyaml',
'pillow',
'graphviz', 'graphviz',
], ],
license='GPLv3', license='GPLv3',