From a94ff3d3471541c2f18712acb60ccb3a786fd819 Mon Sep 17 00:00:00 2001 From: KV Date: Sat, 10 Oct 2020 17:26:52 +0200 Subject: [PATCH] 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. --- requirements.txt | 1 + setup.py | 1 + 2 files changed, 2 insertions(+) diff --git a/requirements.txt b/requirements.txt index 9339481..92620ae 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,5 @@ . graphviz +pillow pyyaml setuptools \ No newline at end of file diff --git a/setup.py b/setup.py index 09621bb..60b1dfb 100644 --- a/setup.py +++ b/setup.py @@ -23,6 +23,7 @@ setup( long_description_content_type='text/markdown', install_requires=[ 'pyyaml', + 'pillow', 'graphviz', ], license='GPLv3',