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

module1 = Extension('cal',sources=['calmodule.c'])
setup(name = 'PonyTrainer',
      version = '0.1',
      author = 'Phil Underwood',
      url = 'http://www.furbrain.org.uk/',
      description = 'Manage the Shetland Attack pony',
      scripts = ['PonyTrainer.py'],
      ext_modules = [module1])
