support markdown-based project summary, change pg extra to psycopg2-binary

This commit is contained in:
Robert Lechte 2018-03-17 12:05:36 +11:00
parent 393dc2b7ce
commit 6bdce9bf15

View File

@ -12,6 +12,7 @@ setup(
url='https://github.com/djrobstep/migra',
description='Like diff but for PostgreSQL schemas',
long_description=readme,
long_description_content_type='text/markdown',
author='Robert Lechte',
author_email='robertlechte@gmail.com',
install_requires=[
@ -36,5 +37,5 @@ setup(
'migra = migra:do_command',
],
},
extras_require={'pg': ['psycopg2']}
extras_require={'pg': ['psycopg2-binary']}
)