From 1ddf7270d4ad375ebe358abd3fb1b5379abe3602 Mon Sep 17 00:00:00 2001 From: Guillaume Raffy Date: Wed, 13 Mar 2024 14:26:41 +0100 Subject: [PATCH] fixed bug that caused the dependency pygraphviz to not be installed while being needed work related to [https://bugzilla.ipr.univ-rennes.fr/show_bug.cgi?id=3790] --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index f91c39e..3e7c8f9 100644 --- a/setup.py +++ b/setup.py @@ -9,5 +9,5 @@ setup( author_email='guillaume.raffy@univ-rennes1.fr', license='MIT', packages=['cocluto'], - requires=['pygraphviz'], # requires apt install graphviz-dev + install_requires=['pygraphviz'], # requires apt install graphviz-dev zip_safe=False)