from distutils.core import setup
import py2exe


setup(name = 'test',
      description = 'Test pixbuf loader',
      version = '1.0',

      console = [{'script': 'test.py',
                  'dest_base': 'bin/test',}],

      data_files = [('bin', ['test.jpg'])],

      zipfile = 'bin/library.zip',                 
      options = {'py2exe': {'includes': 'cairo, pango, pangocairo, atk, glib, gio, gobject',
                            'dll_excludes': 'w9xpopen.exe'}})
