vContent

Annotated setup.py

80:90a602ef7884
2017-10-24 Paul Boddie Remove superfluous result collection slicing and count method parameter.
paul@15 1
#! /usr/bin/env python
paul@15 2
paul@15 3
from distutils.core import setup
paul@15 4
paul@15 5
setup(
paul@15 6
    name         = "vContent",
paul@15 7
    description  = "Parsing and serialisation of iCalendar/vCalendar-style data",
paul@15 8
    author       = "Paul Boddie",
paul@15 9
    author_email = "paul@boddie.org.uk",
paul@69 10
    version      = "0.3",
paul@69 11
    py_modules   = ["vContent", "vCalendar", "vRecurrence"]
paul@15 12
    )