#!/usr/bin/env python

from distutils.core import setup

setup (name = "PyMIDI",
       version = "0.9.2",
       description = "MIDI Input Parser",
       author = "Eric S. Tiedemann",
       author_email = "est@hyperreal.org",
       url = "http://www.hyperreal.org/~est/python/MIDI/",

       packages = ['MIDI'],
       ext_modules = [('MIDI._In', {'sources':['MIDI/_In.c']})],
      )
