EventAggregator

setup.py

45:f87374e888a2
2009-05-17 Paul Boddie Added support for selecting the source of descriptions for the RSS feed, choosing between an explicit field in each event page, or the last comment made when such pages are edited. Exposed the descriptions and format settings in the EventAggregatorSummary interface. Updated release information.
     1 #! /usr/bin/env python     2      3 from distutils.core import setup     4      5 setup(     6     name         = "EventAggregator",     7     description  = "Aggregate event data and display it in an event calendar (or summarise it in iCalendar and RSS resources)",     8     author       = "Paul Boddie",     9     author_email = "paul@boddie.org.uk",    10     url          = "http://moinmo.in/MacroMarket/EventAggregator",    11     version      = "0.3",    12     py_modules   = ["EventAggregatorSupport"]    13     )