[Checkins] SVN: zc.buildout/trunk/setup.py Updated release info.

Jim Fulton jim at zope.com
Tue Mar 6 14:53:26 EST 2007


Log message for revision 73019:
  Updated release info.
  

Changed:
  U   zc.buildout/trunk/setup.py

-=-
Modified: zc.buildout/trunk/setup.py
===================================================================
--- zc.buildout/trunk/setup.py	2007-03-06 19:23:52 UTC (rev 73018)
+++ zc.buildout/trunk/setup.py	2007-03-06 19:53:25 UTC (rev 73019)
@@ -4,14 +4,7 @@
 def read(*rnames):
     return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
 
-name = "zc.buildout"
-setup(
-    name = name,
-    version = "1.0.0b21",
-    author = "Jim Fulton",
-    author_email = "jim at zope.com",
-    description = "System for managing development buildouts",
-    long_description=(
+long_description=(
         read('README.txt')
         + '\n' +
         read('CHANGES.txt')
@@ -21,6 +14,8 @@
         + '\n' +
         read('src', 'zc', 'buildout', 'buildout.txt')
         + '\n' +
+        read('src', 'zc', 'buildout', 'repeatable.txt')
+        + '\n' +
         read('src', 'zc', 'buildout', 'update.txt')
         + '\n' +
         read('src', 'zc', 'buildout', 'testing.txt')
@@ -29,7 +24,18 @@
         + '\n' +
         'Download\n'
         '**********************\n'
-        ),
+        )
+
+#open('doc.txt', 'w').write(long_description)
+
+name = "zc.buildout"
+setup(
+    name = name,
+    version = "1.0.0b21",
+    author = "Jim Fulton",
+    author_email = "jim at zope.com",
+    description = "System for managing development buildouts",
+    long_description=long_description,
     license = "ZPL 2.1",
     keywords = "development build",
     url='http://svn.zope.org/zc.buildout',



More information about the Checkins mailing list