[Checkins] SVN: jquery.layer/trunk/ Forgot it again.

Stephan Richter srichter at cosmos.phy.tufts.edu
Thu May 24 09:08:05 EDT 2007


Log message for revision 75936:
  Forgot it again.
  

Changed:
  A   jquery.layer/trunk/README.txt
  U   jquery.layer/trunk/setup.py

-=-
Added: jquery.layer/trunk/README.txt
===================================================================
--- jquery.layer/trunk/README.txt	                        (rev 0)
+++ jquery.layer/trunk/README.txt	2007-05-24 13:08:04 UTC (rev 75936)
@@ -0,0 +1,3 @@
+This package provides the layer into which all of the resources and views
+related to JQuery are registered. The developer can then choose from those
+layers to build a new skin.


Property changes on: jquery.layer/trunk/README.txt
___________________________________________________________________
Name: svn:eol-style
   + native

Modified: jquery.layer/trunk/setup.py
===================================================================
--- jquery.layer/trunk/setup.py	2007-05-24 12:51:43 UTC (rev 75935)
+++ jquery.layer/trunk/setup.py	2007-05-24 13:08:04 UTC (rev 75936)
@@ -15,14 +15,21 @@
 
 $Id$
 """
+import os
 from setuptools import setup, find_packages
 
+def read(*rnames):
+    return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
+
 setup (
     name='jquery.layer',
     version='0.1.0c1',
     author = "Roger Ineichen and the Zope Community",
     author_email = "zope3-dev at zope.org",
     description = "Base layers for JQuery functionality",
+    long_description=(
+        read('README.txt')
+        ),
     license = "ZPL 2.1",
     keywords = "zope3 layer jquery viewlet",
     classifiers = [



More information about the Checkins mailing list