[Checkins] SVN: hurry.zopeyui/trunk/ Preparing for release.

Martijn Faassen faassen at infrae.com
Sat Oct 11 12:01:11 EDT 2008


Log message for revision 92047:
  Preparing for release.
  

Changed:
  A   hurry.zopeyui/trunk/CHANGES.txt
  A   hurry.zopeyui/trunk/README.txt
  U   hurry.zopeyui/trunk/setup.py

-=-
Added: hurry.zopeyui/trunk/CHANGES.txt
===================================================================
--- hurry.zopeyui/trunk/CHANGES.txt	                        (rev 0)
+++ hurry.zopeyui/trunk/CHANGES.txt	2008-10-11 16:01:10 UTC (rev 92047)
@@ -0,0 +1,7 @@
+CHANGES
+*******
+
+0.1 (2008-10-11)
+================
+
+* Initial public release.

Added: hurry.zopeyui/trunk/README.txt
===================================================================
--- hurry.zopeyui/trunk/README.txt	                        (rev 0)
+++ hurry.zopeyui/trunk/README.txt	2008-10-11 16:01:10 UTC (rev 92047)
@@ -0,0 +1,10 @@
+hurry.zopeyui
+*************
+
+If you want to use YUI in Grok or Zope, you add a dependency to this
+package in your setup.py. You can then import from ``hury.yui`` and
+``need`` the resources you want to use.
+
+This is a very thin integration layer between Zope and
+``hurry.yui``. Right now it only publishes the YUI code
+(``yui-build``) in ``hurry.yui`` as a Zope 3 resource directory.

Modified: hurry.zopeyui/trunk/setup.py
===================================================================
--- hurry.zopeyui/trunk/setup.py	2008-10-11 15:56:55 UTC (rev 92046)
+++ hurry.zopeyui/trunk/setup.py	2008-10-11 16:01:10 UTC (rev 92047)
@@ -1,9 +1,23 @@
 from setuptools import setup, find_packages
+import sys, os
 
+def read(*rnames):
+    return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
+
+long_description = (
+    read('README.txt')
+    + '\n' +
+    read('CHANGES.txt')
+    + '\n' +
+    'Download\n'
+    '********\n'
+    )
+
 setup(
     name='hurry.zopeyui',
     version='0.1dev',
-    description="Zope integration for YUI.",
+    description="Zope integration for hurry.yui.",
+    long_description=long_description,
     classifiers=[],
     keywords='',
     author='Martijn Faassen',



More information about the Checkins mailing list