[Checkins] SVN: grokproject/trunk/ improve pypi page

Jan-Wijbrand Kolman janwijbrand at gmail.com
Tue Oct 19 10:40:49 EDT 2010


Log message for revision 117772:
  improve pypi page

Changed:
  U   grokproject/trunk/CHANGES.txt
  U   grokproject/trunk/setup.py

-=-
Modified: grokproject/trunk/CHANGES.txt
===================================================================
--- grokproject/trunk/CHANGES.txt	2010-10-19 14:33:29 UTC (rev 117771)
+++ grokproject/trunk/CHANGES.txt	2010-10-19 14:40:49 UTC (rev 117772)
@@ -4,8 +4,20 @@
 2.1 (unreleased)
 ------------------
 
-- Nothing changed yet.
+- The newly created project will use the test layer and test browser from
+  ``zope.app.wsgi.testlayer``.
 
+- Delegate bootstrapping a newly created project to the project's
+  ``bootstrap.py`` and the project's ``bin/buildout``. This isolates the
+  bootstrapping from grokproject and prevents potential zc.buildout version
+  conflicts.
+
+- Update to use z3c.recipe.scripts as part of the upgrade to zc.buildout-
+  1.5.2.
+
+**NOTE: As a result of these changes, ``grokproject`` will no longer
+support building projects based on Grok versions earlier than 1.2!**
+
 2.0.1 (2010-05-30)
 ------------------
 

Modified: grokproject/trunk/setup.py
===================================================================
--- grokproject/trunk/setup.py	2010-10-19 14:33:29 UTC (rev 117771)
+++ grokproject/trunk/setup.py	2010-10-19 14:40:49 UTC (rev 117772)
@@ -1,9 +1,25 @@
 from setuptools import setup, find_packages
 
-long_description = (open('README.txt').read()
-                    + '\n\n' +
-                    open('CHANGES.txt').read())
+description = '''
+===========
+Grokproject
+===========
 
+Grokproject provides an easy way to get started with a `Grok
+<http://pypi.python.org/pypi/grok>`_ web application
+
+.. contents::
+
+Description
+===========
+'''
+long_description = (
+    description +
+    open('README.txt').read() +
+    '\n' +
+    open('CHANGES.txt').read()
+    )
+
 setup(
     name='grokproject',
     version='2.0.2dev',



More information about the checkins mailing list