# Copyright (C) 2006-2012 Mortal Coil Games # See LICENSE for details. from distutils.core import setup import py2exe import matplotlib from mv3d.client.ui import irenderer setup( version="0.70", description="mv3d", name="mv3d-tools", # targets to build console=[ "mv3d/tools/patcher/patcher.py", "mv3d/tools/composer/composer2.py"], options=dict( py2exe=dict( bundle_files=3, compressed=2, optimize=2, packages=["sqlite3", "ode", "mv3d", "twisted", "nevow", "axiom"], dist_dir="dist-tools", dll_excludes=[ "mswsock.dll", "powrprof.dll" ] ) ), data_files=matplotlib.get_py2exe_datafiles(), )