EventAggregator

Annotated setup.py

46:8337b0b6177d
2009-06-06 Paul Boddie Added an action which adds new events, displaying a form for the event parameters, then copies an event template and makes a new page containing substituted values for each of the specified parameters. Added day number links from the HTML produced by the macro in order to invoke the action.
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@42 7
    description  = "Aggregate event data and display it in an event calendar (or summarise it in iCalendar and RSS resources)",
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@45 11
    version      = "0.3",
paul@10 12
    py_modules   = ["EventAggregatorSupport"]
paul@10 13
    )