# HG changeset patch # User catherine@Drou # Date 1265721870 18000 # Node ID e89db2eaa0b4c95dbbe640715dd5c0e3d0d0ef6e # Parent cd015f2bff44b7710218fa1097aacf8931fc57d8 removed refs to sqlalchemy diff -r cd015f2bff44 -r e89db2eaa0b4 docs/source/capabilities.rst --- a/docs/source/capabilities.rst Mon Feb 08 08:00:08 2010 -0500 +++ b/docs/source/capabilities.rst Tue Feb 09 08:24:30 2010 -0500 @@ -2,7 +2,10 @@ SQLPython's extra capabilities ============================== -For the most part, SQLPython simply duplicates SQL\*Plus's capabilites. +SQLPython's primary function is to allow entry of SQL queries, much like +SQL*Plus, psql, and the mysql command-line client. It aims to reproduce +as many SQL*Plus capabilities as possible. In addition, it offers several +extra features inspired by other command-line clients. Neatened output =============== diff -r cd015f2bff44 -r e89db2eaa0b4 setup.py --- a/setup.py Mon Feb 08 08:00:08 2010 -0500 +++ b/setup.py Tue Feb 09 08:24:30 2010 -0500 @@ -18,7 +18,7 @@ packages=find_packages(), include_package_data=True, install_requires=['pyparsing','cmd2>=0.6.0','gerald>=0.3.5', - 'genshi>=0.5','sqlalchemy>=0.5.5'], + 'genshi>=0.5'], extras_require = { 'oracle': ['cx_Oracle>=5.0.2'], 'postgres': ['psycopg2'], diff -r cd015f2bff44 -r e89db2eaa0b4 sqlpython/sqlpython.py --- a/sqlpython/sqlpython.py Mon Feb 08 08:00:08 2010 -0500 +++ b/sqlpython/sqlpython.py Tue Feb 09 08:24:30 2010 -0500 @@ -9,7 +9,7 @@ # See also http://twiki.cern.ch/twiki/bin/view/PSSGroup/SqlPython import cmd2,getpass,binascii,re,os,platform -import sqlalchemy, pyparsing, schemagroup, connections +import pyparsing, schemagroup, connections __version__ = '1.7.0' try: import cx_Oracle