[Checkins] SVN: z3c.boiler/trunk/ Get ready for release.

Stephan Richter srichter at cosmos.phy.tufts.edu
Fri Mar 27 07:08:21 EDT 2009


Log message for revision 98413:
  Get ready for release.
  

Changed:
  _U  z3c.boiler/trunk/
  A   z3c.boiler/trunk/CHANGES.txt
  A   z3c.boiler/trunk/README.txt
  U   z3c.boiler/trunk/buildout.cfg
  U   z3c.boiler/trunk/setup.py
  _U  z3c.boiler/trunk/src/

-=-

Property changes on: z3c.boiler/trunk
___________________________________________________________________
Added: svn:ignore
   + .installed.cfg
bin
develop-eggs
dist
docs
parts


Added: z3c.boiler/trunk/CHANGES.txt
===================================================================
--- z3c.boiler/trunk/CHANGES.txt	                        (rev 0)
+++ z3c.boiler/trunk/CHANGES.txt	2009-03-27 11:08:21 UTC (rev 98413)
@@ -0,0 +1,12 @@
+=======
+CHANGES
+=======
+
+Version 0.2.0 (2009-??-??)
+--------------------------
+
+
+Version 0.1.0 (2009-03-27)
+--------------------------
+
+- Initial Release


Property changes on: z3c.boiler/trunk/CHANGES.txt
___________________________________________________________________
Added: svn:eol-style
   + native

Added: z3c.boiler/trunk/README.txt
===================================================================
--- z3c.boiler/trunk/README.txt	                        (rev 0)
+++ z3c.boiler/trunk/README.txt	2009-03-27 11:08:21 UTC (rev 98413)
@@ -0,0 +1 @@
+This package provides the ZBoiler Zope Features.


Property changes on: z3c.boiler/trunk/README.txt
___________________________________________________________________
Added: svn:eol-style
   + native

Modified: z3c.boiler/trunk/buildout.cfg
===================================================================
--- z3c.boiler/trunk/buildout.cfg	2009-03-27 11:01:17 UTC (rev 98412)
+++ z3c.boiler/trunk/buildout.cfg	2009-03-27 11:08:21 UTC (rev 98413)
@@ -1,9 +1,6 @@
 [buildout]
 extends=http://download.zope.org/zope3.4/3.4.0/versions.cfg
 develop = .
-          ../../z3c.feature.core
-          ../../z3c.feature.zope
-          ../../z3c.builder.core
 parts = test
         coverage-test
         coverage-report

Modified: z3c.boiler/trunk/setup.py
===================================================================
--- z3c.boiler/trunk/setup.py	2009-03-27 11:01:17 UTC (rev 98412)
+++ z3c.boiler/trunk/setup.py	2009-03-27 11:08:21 UTC (rev 98413)
@@ -16,14 +16,30 @@
 $Id$
 """
 import os
+import xml.sax.saxutils
 from setuptools import setup, find_packages
 
+def read(*rnames):
+    text = open(os.path.join(os.path.dirname(__file__), *rnames)).read()
+    text = unicode(text, 'utf-8').encode('ascii', 'xmlcharrefreplace')
+    return xml.sax.saxutils.escape(text)
+
 setup (
     name='z3c.boiler',
-    version='0.1.0dev',
+    version='0.1.0',
     author = "Paul Carduner, Stephan Richter, and hopefully others...",
     author_email = "zope-dev at zope.org",
     description = "A utility to help jump start Zope 3 projects",
+    long_description=(
+        read('README.txt') +
+        "\n\n" +
+        "Detailed Documentation\n" +
+        "**********************\n" +
+        "\n\n" +
+        read('src', 'z3c', 'boiler', 'README.txt') +
+        "\n\n" +
+        read('CHANGES.txt')
+        ),
     license = "ZPL 2.1",
     keywords = "zope3 project builder boiler",
     url = 'http://pypi.python.org/pypi/z3c.boiler',


Property changes on: z3c.boiler/trunk/src
___________________________________________________________________
Added: svn:ignore
   + z3c.boiler.egg-info




More information about the Checkins mailing list