[Checkins] SVN: z3c.saconfig/trunk/ Some documentation tweaks so that docs will be on PyPI as well.

Martijn Faassen faassen at startifact.com
Fri Aug 14 10:47:18 EDT 2009


Log message for revision 102770:
  Some documentation tweaks so that docs will be on PyPI as well.
  

Changed:
  U   z3c.saconfig/trunk/CHANGES.txt
  U   z3c.saconfig/trunk/setup.py
  U   z3c.saconfig/trunk/src/z3c/saconfig/README.txt

-=-
Modified: z3c.saconfig/trunk/CHANGES.txt
===================================================================
--- z3c.saconfig/trunk/CHANGES.txt	2009-08-14 14:42:36 UTC (rev 102769)
+++ z3c.saconfig/trunk/CHANGES.txt	2009-08-14 14:47:18 UTC (rev 102770)
@@ -1,13 +1,14 @@
 z3c.saconfig
 ************
 
-0.10 (unreleased)
-=================
+0.9.1 (unreleased)
+==================
 
-- Nothing changed yet.
+- Include documentation on PyPI.
 
+- Small documentation tweaks.
 
 0.9 (2009-08-14)
 ================
 
-* Initial public release.
+- Initial public release.

Modified: z3c.saconfig/trunk/setup.py
===================================================================
--- z3c.saconfig/trunk/setup.py	2009-08-14 14:42:36 UTC (rev 102769)
+++ z3c.saconfig/trunk/setup.py	2009-08-14 14:47:18 UTC (rev 102770)
@@ -4,10 +4,10 @@
 def read(*rnames):
     return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
 
-long_description = ""
+long_description = read('src/z3c/saconfig/README.txt') + '\n' + read('CHANGES.txt')
 
 setup(name='z3c.saconfig',
-      version = '0.10dev',
+      version = '0.9.1dev',
       description="Minimal SQLAlchemy ORM session configuration for Zope",
       long_description=long_description,
       # Get more strings from http://www.python.org/pypi?%3Aaction=list_classifiers

Modified: z3c.saconfig/trunk/src/z3c/saconfig/README.txt
===================================================================
--- z3c.saconfig/trunk/src/z3c/saconfig/README.txt	2009-08-14 14:42:36 UTC (rev 102769)
+++ z3c.saconfig/trunk/src/z3c/saconfig/README.txt	2009-08-14 14:47:18 UTC (rev 102770)
@@ -5,24 +5,20 @@
 ============
 
 This aim of this package is to offer a simple but flexible way to
-configure SQLAlchemy's scoped session support using the Zope 3
-component architecture. This package is based on ``zope.sqlalchemy``, which
+configure SQLAlchemy's scoped session support using the Zope component
+architecture. This package is based on ``zope.sqlalchemy``, which
 offers transaction integration between Zope and SQLAlchemy.
 
 We sketch out two main scenarios here:
 
-* one database per Zope 3 instance.
+* one database per Zope instance.
 
-* one database per site (or Grok application) in a Zope 3 instance
-  (and thus multiple databases per Zope 3 instance).
+* one database per site (or Grok application) in a Zope instance
+  (and thus multiple databases per Zope instance).
 
-This package does not provide facilities to allow multiple databases
-in a single site; if you want more than one database in your Zope 3
-instance, you will need to set up different sites.
+GloballyScopedSession (one database per Zope instance)
+======================================================
 
-GloballyScopedSession (one database per Zope 3 instance)
-========================================================
-
 The simplest way to set up SQLAlchemy for Zope is to have a single
 thread-scoped session that's global to your entire Zope
 instance. Multiple applications will all share this session. The



More information about the Checkins mailing list