Skip to content

Commit

Permalink
Let use choose between psycopg2 binary or source
Browse files Browse the repository at this point in the history
  • Loading branch information
browniebroke committed Nov 4, 2020
1 parent 6f20688 commit d5708ec
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@

requires = [
'django',
'psycopg2-binary',
]


Expand All @@ -25,6 +24,10 @@ def read(filename):
description='Redshift database backend for Django',
long_description=read('README.rst') + read('CHANGES.rst'),
install_requires=requires,
extra_requires={
'psycopg2-binary': ['psycopg2-binary'],
'psycopg2': ['psycopg2'],
},
python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*",
classifiers=[
'Development Status :: 5 - Production/Stable',
Expand Down

0 comments on commit d5708ec

Please sign in to comment.