nerdynick / PySQLPool

PySQLPool is a MySQL Connection Pooling for Python 2.4+ built on-top of the famous MySQLdb Python library. My goal of PySQLPool is to provide a simple yet robust pooling library for use in and Python application. Wether it be a simple script to a complex website built on WSGI. PySQLPool can handle it. Even this very website is built upon it, and a few others that you may interact with on a daily bases.
GNU Lesser General Public License v3.0
57 stars 21 forks source link

setup.py now installs MySQL-python as dependency #3

Closed bergundy closed 10 years ago

bergundy commented 11 years ago

setup.py no longer imports PySQLPool which imports MySQLdb. This allows running setup.py even if MySQLdb is not installed on the system.

For convenience, I added the update_version.sh script, if we ever need to bump the version and are too lazy to update 2 places :)

Also, pip seems to complain when requirements contain a dash. Replacing it with an underscore fixes that.