Commit 32cb4ef4 authored by Chris McDonough's avatar Chris McDonough

vb; add trove classifiers for python versions; adjust readme content; add...

vb; add trove classifiers for python versions; adjust readme content; add version description to changes.txt
parent 61de87f5
Changes Changes
======= =======
Next release 1.2.0 (unreleased)
------------ ------------------
New Features:
- Python 3.2 compatibility.
- ... - Dropped Python 2.4 and 2.5 compatibility (use 1.1.1 if you need to use
"transaction" under these Python versions).
1.1.1 (2010-09-16) 1.1.1 (2010-09-16)
------------------ ------------------
......
...@@ -3,7 +3,7 @@ Transactions ...@@ -3,7 +3,7 @@ Transactions
============ ============
This package contains a generic transaction implementation for Python. It is This package contains a generic transaction implementation for Python. It is
mainly used by the ZODB, though. mainly used by the ZODB.
See http://www.zodb.org/zodbbook/transactions.html for narrative See http://www.zodb.org/zodbbook/transactions.html for narrative
documentation on its usage. documentation on its usage.
......
...@@ -12,7 +12,7 @@ ...@@ -12,7 +12,7 @@
# #
############################################################################## ##############################################################################
__version__ = '0' __version__ = '1.2.0dev'
import os import os
...@@ -35,6 +35,12 @@ setup(name='transaction', ...@@ -35,6 +35,12 @@ setup(name='transaction',
"Topic :: Software Development :: Libraries :: Python Modules", "Topic :: Software Development :: Libraries :: Python Modules",
"Operating System :: Microsoft :: Windows", "Operating System :: Microsoft :: Windows",
"Operating System :: Unix", "Operating System :: Unix",
"Programming Language :: Python",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.2",
"Programming Language :: Python :: Implementation :: CPython",
], ],
author="Zope Corporation", author="Zope Corporation",
author_email="zodb-dev@zope.org", author_email="zodb-dev@zope.org",
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment