[Checkins] SVN: DateTime/trunk/ Refer to src/DateTime/DateTime.txt for the long description (PyPI frontpage).

Philipp von Weitershausen philikon at philikon.de
Sun Jan 6 14:10:27 EST 2008


Log message for revision 82697:
  Refer to src/DateTime/DateTime.txt for the long description (PyPI frontpage).

Changed:
  A   DateTime/trunk/README.txt
  U   DateTime/trunk/setup.py

-=-
Added: DateTime/trunk/README.txt
===================================================================
--- DateTime/trunk/README.txt	                        (rev 0)
+++ DateTime/trunk/README.txt	2008-01-06 19:10:26 UTC (rev 82697)
@@ -0,0 +1 @@
+Please refer to src/DateTime/DateTime.txt.


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

Modified: DateTime/trunk/setup.py
===================================================================
--- DateTime/trunk/setup.py	2008-01-06 19:07:28 UTC (rev 82696)
+++ DateTime/trunk/setup.py	2008-01-06 19:10:26 UTC (rev 82697)
@@ -20,17 +20,18 @@
       version = '2.11.0dev',
       url='http://cheeseshop.python.org/pypi/DateTime',
       license='ZPL 2.1',
-      description='DateTime data type',
-      author='Zope Corporation and Contributors',
-      author_email='zope-dev at zope.org',
-      long_description="""\
+      description="""\
 This package provides a DateTime data type, as known from Zope 2.
 Unless you need to communicate with Zope 2 APIs, you're probably
 better off using Python's bult-in datetime module.""",
-      
-	  packages=find_packages('src'),
-	  package_dir={'': 'src'},
+      author='Zope Corporation and Contributors',
+      author_email='zope-dev at zope.org',
+      long_description=open(
+          os.path.join('src', 'DateTime', 'DateTime.txt')).read(),
 
+      packages=find_packages('src'),
+      package_dir={'': 'src'},
+
       install_requires=['zope.interface',
                         'pytz',
                         ],



More information about the Checkins mailing list