From: <sub...@co...> - 2010-04-09 20:38:00
|
Author: phd Date: 2010-04-09 14:37:52 -0600 (Fri, 09 Apr 2010) New Revision: 4162 Modified: SQLObject/trunk/README.txt SQLObject/trunk/setup.py Log: Added rdbhost to the list of subpackages. Modified: SQLObject/trunk/README.txt =================================================================== --- SQLObject/trunk/README.txt 2010-04-09 18:14:03 UTC (rev 4161) +++ SQLObject/trunk/README.txt 2010-04-09 20:37:52 UTC (rev 4162) @@ -7,7 +7,7 @@ It currently supports MySQL through the `MySQLdb` package, PostgreSQL through the `psycopg` package, SQLite, Firebird, MaxDB (SAP DB), MS SQL -and Sybase. It should support Python versions back to 2.4. +Sybase and Rdbhost. It should support Python versions back to 2.4. For more information please see the documentation in docs/SQLObject.txt, or online at http://sqlobject.org/ Modified: SQLObject/trunk/setup.py =================================================================== --- SQLObject/trunk/setup.py 2010-04-09 18:14:03 UTC (rev 4161) +++ SQLObject/trunk/setup.py 2010-04-09 20:37:52 UTC (rev 4162) @@ -10,8 +10,8 @@ is_setuptools = False subpackages = ['firebird', 'include', 'include.pydispatch', 'inheritance', - 'manager', 'maxdb', 'mysql', 'mssql', 'postgres', 'sqlite', - 'sybase', 'util', 'versioning'] + 'manager', 'maxdb', 'mysql', 'mssql', 'postgres', 'rdbhost', + 'sqlite', 'sybase', 'util', 'versioning'] kw = {} if is_setuptools: |