# HG changeset patch
# User Tobias Berling <t-obi@users.sourceforge.net>
# Date 1295281266 -3600
# Node ID 4dfc5f3c1f2cd6f23082f83034779f695be4f432
# Parent  be4bd77dbe57e0bfc08074d100b24ab8aa8ab784
setup.py: Fixed syntax error

diff -r be4bd77dbe57 -r 4dfc5f3c1f2c setup.py
--- a/setup.py	Mon Jan 17 17:20:13 2011 +0100
+++ b/setup.py	Mon Jan 17 17:21:06 2011 +0100
@@ -62,6 +62,6 @@
               'classifiers': classifiers}
 
 if 'requires' in DistributionMetadata._METHOD_BASENAMES:
-    setup_args['requires'] = ['psycopg2>=2.0', 'pyPgSQL>=2.5.1']
+    setup_args['requires'] = ['psycopg2 (>=2.0)', 'pyPgSQL (>=2.5.1)']
 
 setup(**setup_args)