#!/usr/bin/python
from distutils.core import setup

setup(name="python-pdi",
      version = "0.1",
      description = "Python interface to manipulate ical files",
      author = "jan gerber",
      author_email = "j@reboot.fm",
      url = "http://svn.reboot.fm/trunk/python-pdi",
      license = "GPL License",
      long_description =
"""\
this packages is used to read ical files generated by reboot.fm schedular,
evolution, ical and others. for more docs look at
http://www.nongnu.org/python-pdi/
""",
      packages = ["pdi"],
      )
