[Checkins] SVN: z3c.relationfield/trunk/ Prepare for release.

Martijn Faassen faassen at infrae.com
Fri Dec 5 12:45:38 EST 2008


Log message for revision 93655:
  Prepare for release.
  

Changed:
  A   z3c.relationfield/trunk/CHANGES.txt
  U   z3c.relationfield/trunk/setup.py

-=-
Added: z3c.relationfield/trunk/CHANGES.txt
===================================================================
--- z3c.relationfield/trunk/CHANGES.txt	                        (rev 0)
+++ z3c.relationfield/trunk/CHANGES.txt	2008-12-05 17:45:38 UTC (rev 93655)
@@ -0,0 +1,7 @@
+CHANGES
+*******
+
+0.1 (2008-12-05)
+================
+
+* Initial public release.

Modified: z3c.relationfield/trunk/setup.py
===================================================================
--- z3c.relationfield/trunk/setup.py	2008-12-05 17:42:35 UTC (rev 93654)
+++ z3c.relationfield/trunk/setup.py	2008-12-05 17:45:38 UTC (rev 93655)
@@ -1,13 +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('src', 'z3c', 'relationfield', 'README.txt')
+    + '\n' +
+    read('CHANGES.txt')
+    + '\n' +
+    'Download\n'
+    '********\n'
+    )
+
 setup(
     name='z3c.relationfield',
     version='0.1dev',
-    description="A relation field framework.",
-    long_description="""z3c.relationfield defines a Zope 3 schema field to
-    manage relations, and a widget to set them. Relations are automatically
-    indexed and can be queried, using zc.relation as a base.""",
+    description="A relation field framework for Zope 3.",
+    long_description=long_description,
     classifiers=[],
     keywords='',
     author='Martijn Faassen',



More information about the Checkins mailing list