#!/usr/bin/env python
from distutils.core import setup
try:
    import py2exe
except:
    pass
pony_scripts = ['PonyTrainer.py','get_readings.py','tell_pony.py','PonyUpgrade.py']
setup(name = 'PonyTrainer',
      version = '3.0',
      author = 'Phil Underwood',
      author_email = 'phil@furbrain.org.uk',
      license = 'GPL',
      url = 'http://www.furbrain.org.uk/',
      description = 'Manage the Shetland Attack pony',
      py_modules = ['ponytalk','cdc'],
      scripts = pony_scripts,
      console = pony_scripts)