setup.py: Fixed syntax error v0.6.x
authorTobias Berling <t-obi@users.sourceforge.net>
Mon, 17 Jan 2011 17:21:06 +0100
branchv0.6.x
changeset 369 4dfc5f3c1f2c
parent 368 be4bd77dbe57
child 370 1b1f8f0cc687
setup.py: Fixed syntax error
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)