# -*- coding: utf-8 -*-
#works with Python 2.7. Run as $python setup.py py2exe

from distutils.core import setup
import py2exe

#setup(concole=['edubeam.py'], # use for debugging with console
setup(windows=['edubeam.py'],
      options={
          "py2exe":{
              "includes":["ctypes","logging"],
              "packages": ["encodings"],
              "excludes":["OpenGL"],
              }
          }
      )
