[Checkins] SVN: zc.twist/trunk/ more distro bits

Gary Poster gary at zope.com
Thu Mar 13 11:51:53 EDT 2008


Log message for revision 84637:
  more distro bits

Changed:
  A   zc.twist/trunk/CHANGES.txt
  A   zc.twist/trunk/README.txt
  U   zc.twist/trunk/setup.py

-=-
Added: zc.twist/trunk/CHANGES.txt
===================================================================
--- zc.twist/trunk/CHANGES.txt	                        (rev 0)
+++ zc.twist/trunk/CHANGES.txt	2008-03-13 15:51:52 UTC (rev 84637)
@@ -0,0 +1,16 @@
+1.0.0 (2008-3-13)
+-----------------
+
+* Add ability to specify an alternate reactor
+
+* Use bootstrap external
+
+0.1.1 (?)
+---------
+
+* use zc.twisted, not twisted in setup.py, until twisted is setuptools-friendly
+
+0.1 (?)
+-------
+
+* Initial release-ish


Property changes on: zc.twist/trunk/CHANGES.txt
___________________________________________________________________
Name: svn:eol-style
   + native

Added: zc.twist/trunk/README.txt
===================================================================
--- zc.twist/trunk/README.txt	                        (rev 0)
+++ zc.twist/trunk/README.txt	2008-03-13 15:51:52 UTC (rev 84637)
@@ -0,0 +1 @@
+Mixing Twisted and ZODB


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

Modified: zc.twist/trunk/setup.py
===================================================================
--- zc.twist/trunk/setup.py	2008-03-13 15:11:39 UTC (rev 84636)
+++ zc.twist/trunk/setup.py	2008-03-13 15:51:52 UTC (rev 84637)
@@ -2,6 +2,10 @@
 
 from setuptools import setup, find_packages
 
+long_description = (open("src/zc/twist/README.txt").read() +
+                    '\n\n=======\nChanges\n=======' +
+                    open("CHANGES.txt").read())
+
 setup(
     name='zc.twist',
     version='1.0',
@@ -9,7 +13,8 @@
     package_dir={'':'src'},
     zip_safe=False,
     author='Gary Poster',
-    description='Mixing Twisted and ZODB',
+    description=open('README.txt').read(),
+    long_description=long_description,
     license='ZPL',
     install_requires=[
         'ZODB3',



More information about the Checkins mailing list