From: Thierry Parmentelat Date: Fri, 5 Jun 2015 13:43:01 +0000 (+0200) Subject: remove dependency against graphviz and matplotlib, that easily break the whole instal... X-Git-Tag: nepi-3.2.3-pypi~1 X-Git-Url: http://git.onelab.eu/?p=nepi.git;a=commitdiff_plain;h=70ac43f5361d2ab627e498a9a37d2493766eaa23 remove dependency against graphviz and matplotlib, that easily break the whole install because of their C libraries dependencies --- diff --git a/setup.py b/setup.py index c4311b49..ef584b0d 100755 --- a/setup.py +++ b/setup.py @@ -56,7 +56,10 @@ setup( install_requires = [ "ipaddr", "networkx", - "pygraphviz", - "matplotlib", + # refrain from mentioning these ones that are not exactly crucial + # and that have additional, non-python, dependencies + # that can easily break the whole install + # "matplotlib", + # "pygraphviz", ] )