2009-04-03 | Paul Boddie | file changeset files shortlog | Moved event timestamp discovery into a new setEventTimestamps function which adds datetime and sequence information to the event details. Added Last-Modified header support, although Apache seems to want to override this. Added RSS 2.0 support. Made a minor edit to the action description. |
paul@10 | 1 | #! /usr/bin/env python |
paul@10 | 2 | |
paul@10 | 3 | from distutils.core import setup |
paul@10 | 4 | |
paul@10 | 5 | setup( |
paul@10 | 6 | name = "EventAggregator", |
paul@10 | 7 | description = "Aggregate event data and display it in an event calendar (or summarise it in an iCalendar resource)", |
paul@10 | 8 | author = "Paul Boddie", |
paul@10 | 9 | author_email = "paul@boddie.org.uk", |
paul@10 | 10 | url = "http://moinmo.in/MacroMarket/EventAggregator", |
paul@18 | 11 | version = "0.1", |
paul@10 | 12 | py_modules = ["EventAggregatorSupport"] |
paul@10 | 13 | ) |