2011-07-21 | Paul Boddie | raw annotate files changeset graph | Changed the RFC URLs to point to an active site. |
1 #! /usr/bin/env python 2 3 from distutils.core import setup 4 5 setup( 6 name = "vContent", 7 description = "Parsing and serialisation of iCalendar/vCalendar-style data", 8 author = "Paul Boddie", 9 author_email = "paul@boddie.org.uk", 10 version = "0.1", 11 py_modules = ["vContent", "vCalendar"] 12 )