From regebro at codespeak.net Thu Apr 13 18:17:22 2006 From: regebro at codespeak.net (regebro@codespeak.net) Date: Thu Apr 13 18:17:38 2006 Subject: [icalendar-checkins] r25808 - iCalendar/trunk Message-ID: <20060413161722.A43CE10081@code0.codespeak.net> Author: regebro Date: Thu Apr 13 18:17:21 2006 New Revision: 25808 Modified: iCalendar/trunk/CHANGES.txt iCalendar/trunk/CREDITS.txt iCalendar/trunk/HISTORY.txt iCalendar/trunk/setup.py iCalendar/trunk/version.txt Log: Added support for creating python eggs. Modified: iCalendar/trunk/CHANGES.txt ============================================================================== --- iCalendar/trunk/CHANGES.txt (original) +++ iCalendar/trunk/CHANGES.txt Thu Apr 13 18:17:21 2006 @@ -1,23 +1,4 @@ -iCalendar 0.11 (2005-11-08) -=========================== +iCalendar trunk (1.0?) (unreleased) +=================================== -* Changed component .from_string to use types_factory instead of - hardcoding entries to 'inline' - -* Changed UTC tzinfo to a singleton so the same one is used everywhere - -* Made the parser more strict by using regular expressions for key - name, param name and quoted/unquoted safe char as per the RFC - -* Added some tests from the schooltool icalendar parser for better - coverage - -* Be more forgiving on the regex for folding lines - -* Allow for multiple top-level components on .from_string - -* Fix vWeekdays, wasn't accepting relative param (eg: -3SA vs -SA) - -* vDDDTypes didn't accept negative period (eg: -P30M) - -* '\N' is also acceptable as newline on content lines, per RFC +* Added support for creating a python egg distribution. \ No newline at end of file Modified: iCalendar/trunk/CREDITS.txt ============================================================================== --- iCalendar/trunk/CREDITS.txt (original) +++ iCalendar/trunk/CREDITS.txt Thu Apr 13 18:17:21 2006 @@ -4,7 +4,7 @@ Main developer -------------- -- Max M (maxm@mxm.d) +- Max M (maxm@mxm.dk) Janitor ------- Modified: iCalendar/trunk/HISTORY.txt ============================================================================== --- iCalendar/trunk/HISTORY.txt (original) +++ iCalendar/trunk/HISTORY.txt Thu Apr 13 18:17:21 2006 @@ -1,3 +1,28 @@ +iCalendar 0.11 (2005-11-08) +=========================== + +* Changed component .from_string to use types_factory instead of + hardcoding entries to 'inline' + +* Changed UTC tzinfo to a singleton so the same one is used everywhere + +* Made the parser more strict by using regular expressions for key + name, param name and quoted/unquoted safe char as per the RFC + +* Added some tests from the schooltool icalendar parser for better + coverage + +* Be more forgiving on the regex for folding lines + +* Allow for multiple top-level components on .from_string + +* Fix vWeekdays, wasn't accepting relative param (eg: -3SA vs -SA) + +* vDDDTypes didn't accept negative period (eg: -P30M) + +* '\N' is also acceptable as newline on content lines, per RFC + + iCalendar 0.10 (2005-04-28) =========================== Modified: iCalendar/trunk/setup.py ============================================================================== --- iCalendar/trunk/setup.py (original) +++ iCalendar/trunk/setup.py Thu Apr 13 18:17:21 2006 @@ -1,14 +1,29 @@ #!/usr/bin/env python -from distutils.core import setup +try: + from setuptools import setup +except ImportError: + from distutils.core import setup -f = open('version.txt', 'r') -version = f.read().strip() -f.close() +version = file('version.txt').read().strip() setup(name='icalendar', - version=version, - description='iCalendar support module', - package_dir = {'': 'src'}, + package_dir={'': 'src'}, packages=['icalendar'], - ) + version=version, + + # metadata for upload to PyPI + author='MaxM', + author_email='maxm@mxm.dk', + description='iCalendar parser/generator', + license='GPL2.1', + keywords='calendar icalendar', + url='http://codespeak.net/icalendar/', + long_description="""iCalendar is a parser/generator of iCalendar files + (RFC 2445) for use with Python.""", + classifiers=['Development Status :: 5 - Production/Stable', + 'Intended Audience :: Developers', + 'License :: OSI Approved :: GNU General Public License (GPL)', + 'Operating System :: OS Independent'], + platforms='All', + ) \ No newline at end of file Modified: iCalendar/trunk/version.txt ============================================================================== --- iCalendar/trunk/version.txt (original) +++ iCalendar/trunk/version.txt Thu Apr 13 18:17:21 2006 @@ -1,2 +1,2 @@ -0.11 +0.11.dev From regebro at codespeak.net Sun Apr 16 13:19:08 2006 From: regebro at codespeak.net (regebro@codespeak.net) Date: Sun Apr 16 13:19:10 2006 Subject: [icalendar-checkins] r25869 - iCalendar/trunk Message-ID: <20060416111908.E50D010098@code0.codespeak.net> Author: regebro Date: Sun Apr 16 13:19:07 2006 New Revision: 25869 Modified: iCalendar/trunk/version.txt Log: OK, I haven't really made any code changes, so lets just stick to 0.11 for the time being. Modified: iCalendar/trunk/version.txt ============================================================================== --- iCalendar/trunk/version.txt (original) +++ iCalendar/trunk/version.txt Sun Apr 16 13:19:07 2006 @@ -1,2 +1,2 @@ -0.11.dev +0.11