[Checkins] SVN: zc.sourcefactory/trunk/setup. - ported package management changes from 0.2 branch

Christian Theune ct at gocept.com
Sun Jun 10 08:28:01 EDT 2007


Log message for revision 76574:
   - ported package management changes from 0.2 branch
  

Changed:
  D   zc.sourcefactory/trunk/setup.cfg
  U   zc.sourcefactory/trunk/setup.py

-=-
Deleted: zc.sourcefactory/trunk/setup.cfg
===================================================================
--- zc.sourcefactory/trunk/setup.cfg	2007-06-10 12:26:18 UTC (rev 76573)
+++ zc.sourcefactory/trunk/setup.cfg	2007-06-10 12:28:01 UTC (rev 76574)
@@ -1,3 +0,0 @@
-[egg_info]
-tag_build = dev
-tag_svn_revision = 1

Modified: zc.sourcefactory/trunk/setup.py
===================================================================
--- zc.sourcefactory/trunk/setup.py	2007-06-10 12:26:18 UTC (rev 76573)
+++ zc.sourcefactory/trunk/setup.py	2007-06-10 12:28:01 UTC (rev 76574)
@@ -1,4 +1,5 @@
 from setuptools import setup, find_packages
+import os.path
 
 setup(
     name="zc.sourcefactory",
@@ -7,8 +8,13 @@
     author_email="zope3-dev at zope.org",
     url="http://svn.zope.org/zc.sourcefactory",
 
-    long_description="An easy way to create custom Zope 3 sources.",
+    description="An easy way to create custom Zope 3 sources.",
 
+    long_description=open(
+        os.path.join(os.path.dirname(__file__),
+                     "src", "zc", "sourcefactory", "README.txt"),
+        "r").read(),
+
     packages=find_packages('src'),
     package_dir={'':'src'},
 



More information about the Checkins mailing list