vContent

setup.py

19:7a832601e349
2012-04-02 Paul Boddie Added tag rel-0-1 for changeset d63aaad6475b
     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     )