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