Author: phd
Date: Mon Feb 21 11:46:11 2011
New Revision: 4334
Log:
Next version will be 1.0.
Modified:
SQLObject/trunk/setup.py
Modified: SQLObject/trunk/setup.py
==============================================================================
--- SQLObject/trunk/setup.py Fri Feb 11 09:39:58 2011 (r4333)
+++ SQLObject/trunk/setup.py Mon Feb 21 11:46:11 2011 (r4334)
@@ -21,7 +21,7 @@
"""
setup(name="SQLObject",
- version="0.16",
+ version="1.0",
description="Object-Relational Manager, aka database wrapper",
long_description="""\
SQLObject is a popular *Object Relational Manager* for providing an
@@ -35,7 +35,7 @@
Supports MySQL, PostgreSQL, SQLite, Firebird, Sybase, MSSQL and MaxDB (SAPDB).
For development see the `subversion repository
-<http://svn.colorstudy.com/SQLObject/trunk#egg=SQLObject-0.16dev>`_
+<http://svn.colorstudy.com/SQLObject/trunk#egg=SQLObject-1.0dev>`_
""",
classifiers=[
"Development Status :: 5 - Production/Stable",
@@ -49,7 +49,7 @@
author="Ian Bicking",
author_email="ia...@co...",
url="http://sqlobject.org/devel/",
- download_url="http://cheeseshop.python.org/pypi/SQLObject/0.16",
+ download_url="http://cheeseshop.python.org/pypi/SQLObject/1.0",
license="LGPL",
packages=["sqlobject"] + ['sqlobject.%s' % package for package in subpackages],
scripts=["scripts/sqlobject-admin"],
@@ -83,10 +83,9 @@
as classes, and rows are instances of those classes. SQLObject is meant to be
easy to use and quick to get started with.
-SQLObject supports a number of backends: MySQL, PostgreSQL, SQLite, and
-Firebird. It also has newly added support for Sybase, MSSQL and MaxDB (also
-known as SAPDB).
-
+It currently supports MySQL through the `MySQLdb` package, PostgreSQL
+through the `psycopg` package, SQLite, Firebird, MaxDB (SAP DB), MS SQL
+Sybase and Rdbhost. It should support Python versions back to 2.4.
Where is SQLObject
==================
|