2009-03-25 | Paul Boddie | file changeset files shortlog | Made the daterange function only permit descending ranges through an explicitly specified step parameter. Added a simple span function which just subtracts the last date from the first, returning the year and month differences in a tuple. Added a function which defines a "concrete" time period based on window and event information. Removed the 'span' macro parameter and introduced "current" month notation to replace the restrictive "last" and "next" values for 'start' and 'end'. Improved navigation links, employing 'start' and 'end' parameters. |
paul@10 | 1 | #! /usr/bin/env python |
paul@10 | 2 | |
paul@10 | 3 | from distutils.core import setup |
paul@10 | 4 | |
paul@10 | 5 | import EventAggregatorSupport |
paul@10 | 6 | |
paul@10 | 7 | setup( |
paul@10 | 8 | name = "EventAggregator", |
paul@10 | 9 | description = "Aggregate event data and display it in an event calendar (or summarise it in an iCalendar resource)", |
paul@10 | 10 | author = "Paul Boddie", |
paul@10 | 11 | author_email = "paul@boddie.org.uk", |
paul@10 | 12 | url = "http://moinmo.in/MacroMarket/EventAggregator", |
paul@10 | 13 | version = EventAggregatorSupport.__version__, |
paul@10 | 14 | py_modules = ["EventAggregatorSupport"] |
paul@10 | 15 | ) |