[Checkins] SVN: zope.dottedname/trunk/setup.py prepare for 3.4.0 release

Fred L. Drake, Jr. fdrake at gmail.com
Thu Jul 19 13:44:06 EDT 2007


Log message for revision 78181:
  prepare for 3.4.0 release

Changed:
  U   zope.dottedname/trunk/setup.py

-=-
Modified: zope.dottedname/trunk/setup.py
===================================================================
--- zope.dottedname/trunk/setup.py	2007-07-19 17:43:30 UTC (rev 78180)
+++ zope.dottedname/trunk/setup.py	2007-07-19 17:44:05 UTC (rev 78181)
@@ -16,14 +16,21 @@
 $Id$
 """
 
+import os.path
+
 from setuptools import setup, find_packages
 
+
+here = os.path.dirname(os.path.abspath(__file__))
+resolve_txt = os.path.join(here, "src", "zope", "dottedname", "resolve.txt")
+
 setup(
     name="zope.dottedname",
-    version = '3.4.0b1',
+    version = '3.4.0',
     url='http://svn.zope.org/zope.dottedname',
     license='ZPL 2.1',
-    description='Zope dottedname',
+    description='Resolver for Python dotted names.',
+    long_description=open(resolve_txt).read().rstrip(),
     author='Zope Corporation and Contributors',
     author_email='zope3-dev at zope.org',
 



More information about the Checkins mailing list