2013-05-06 | Paul Boddie | raw annotate files changeset graph | Made use of a function in MoinRemoteSupport to obtain cached item metadata. Noted the updated MoinSupport version dependency. |
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.10", 12 packages = ["EventAggregatorSupport"], 13 py_modules = ["MoinMoin.script.import.eventfeed"] 14 )