changeset 444:e89db2eaa0b4

removed refs to sqlalchemy
author catherine@Drou
date Tue, 09 Feb 2010 08:24:30 -0500
parents cd015f2bff44
children b34ea206c7d1
files docs/source/capabilities.rst setup.py sqlpython/sqlpython.py
diffstat 3 files changed, 6 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- 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
 ===============
--- 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'],
--- 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