1
0
Fork 0

Update README.rst

This commit is contained in:
Amjith Ramanujam 2014-12-11 00:51:38 -08:00
parent 764b5d5a8f
commit b015773eec
1 changed files with 10 additions and 13 deletions

View File

@ -1,5 +1,3 @@
** WIP - DO NOT USE **
A REPL for Postgres
-------------------
@ -124,20 +122,19 @@ Then you can install pgcli:
$ sudo pip install pgcli
Gratitude:
==========
Thanks:
=======
A special thanks to Jonathan Slenders for creating Python Prompt Toolkit, which
is quite literally the backbone library that made this app possible. Jonathan
A special thanks to `Jonathan Slenders<https://twitter.com/jonathan_s>`_ for creating `Python Prompt Toolkit<github.com/jonathanslenders/python-prompt-toolkit>`_, which
is quite literally the backbone library, that made this app possible. Jonathan
has also provided valuable feedback and support during the development of this
app.
This app also includes tabulate (https://pypi.python.org/pypi/tabulate) library
for printing the output of the tables. The reason for copying it directly and
not listing it as a dependency is because I had to make a change to the table
format which is merged back into the original repo, but not yet released in
PyPI.
This app includes the awesome `tabulate<https://pypi.python.org/pypi/tabulate>`_ library
for printing the output of tables. The reason for vendoring this library rather than
listing it as a dependency in setup.py, is because I had to make a change to the table
format which is merged back into the original repo, but not yet released inPyPI.
Click is used for command line option parsing and printing error messages.
`Click<http://click.pocoo.org/3/>`_ is used for command line option parsing and printing error messages.
Thanks to psycopg2 for providing a rock solid interface to Postgres dataabase.
Thanks to `psycopg<http://initd.org/psycopg/>`_ for providing a rock solid interface to Postgres dataabase.