altairbow / django-db-connection-pool

Database connection pool component library for Django
https://pypi.python.org/pypi/django-db-connection-pool/
MIT License
181 stars 24 forks source link

Make engine requirements optional #13

Closed alexander-jacob closed 3 years ago

alexander-jacob commented 3 years ago

I only need the Oracle engine. So I don't want the mysql and postgresql packages to be installed. In my case I even cannot install the postgresql because my container lacks some requirements to do so.

Use extras_require to specify the engines to be installed. (see changes in readme)

altairbow commented 3 years ago

Very helpful, Thanks for the PR.