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

Martijn Faassen faassen at infrae.com
Sat Oct 11 09:53:48 EDT 2008


Log message for revision 92037:
  Preparing for release.
  

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

-=-
Added: hurry.yui/trunk/CHANGES.txt
===================================================================
--- hurry.yui/trunk/CHANGES.txt	                        (rev 0)
+++ hurry.yui/trunk/CHANGES.txt	2008-10-11 13:53:48 UTC (rev 92037)
@@ -0,0 +1,7 @@
+CHANGES
+*******
+
+2.6.0 (2008-10-11) (YUI version 2.6.0)
+======================================
+
+* Initial public release.

Modified: hurry.yui/trunk/setup.py
===================================================================
--- hurry.yui/trunk/setup.py	2008-10-11 13:28:32 UTC (rev 92036)
+++ hurry.yui/trunk/setup.py	2008-10-11 13:53:48 UTC (rev 92037)
@@ -2,10 +2,26 @@
 
 YUI_VERSION = '2.6.0'
 
+import sys, os
+
+def read(*rnames):
+    return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
+
+long_description = (
+    read('src', 'hurry', 'yui', 'README.txt')
+    + '\n' +
+    read('CHANGES.txt')
+    + '\n' +
+    'Download\n'
+    '********\n'
+    )
+
+
 setup(
     name='hurry.yui',
     version=YUI_VERSION + 'dev',
-    description="YUI for hurry.resource.",
+    description="hurry.resource style resources for YUI.",
+    long_description = long_description,
     classifiers=[],
     keywords='',
     author='Martijn Faassen',

Modified: hurry.yui/trunk/src/hurry/yui/README.txt
===================================================================
--- hurry.yui/trunk/src/hurry/yui/README.txt	2008-10-11 13:28:32 UTC (rev 92036)
+++ hurry.yui/trunk/src/hurry/yui/README.txt	2008-10-11 13:53:48 UTC (rev 92037)
@@ -1,9 +1,6 @@
 hurry.yui
-=========
+*********
 
-Introduction
-------------
-
 This library packages YUI for ``hurry.resource``. It is aware of YUI's
 dependency structure and different modes (normal, minified and debug)
 and consolidations.
@@ -54,4 +51,3 @@
 
   >>> print needed.render(mode="minified")
   <link rel="stylesheet" type="text/css" href="http://localhost/static/yui/reset-fonts-grids/reset-fonts-grids-min.css" />
-



More information about the Checkins mailing list