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]
This commit is contained in:
Guillaume Raffy 2024-03-13 14:26:41 +01:00
parent 5e402a2e45
commit 1ddf7270d4
1 changed files with 1 additions and 1 deletions

View File

@ -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)