From ba5d32bcc2a90bcb44593f94b14dde9424f9c7c6 Mon Sep 17 00:00:00 2001 From: Thomas Grainger Date: Mon, 2 Jun 2014 11:43:15 +0100 Subject: [PATCH] fix install_requires format --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index f33f7e1..0e3dbca 100644 --- a/setup.py +++ b/setup.py @@ -35,5 +35,5 @@ setup( long_description="\n".join(pydot.__doc__.split('\n')), packages=['pydot'], package_dir={'pydot': 'pydot'}, - install_requires=['pyparsing (>=2.0.1)'], + install_requires=['pyparsing>=2.0.1',], )