fix: .plot should accept minval/maxval as an array for the channels: [0,0,0]
[supercollider.git] / editors / Psycollider / setup.py
blobce71a4e8ef3501e0f7b8cfbf6c10b0b231ee14e4
1 # setup.py for use with py2exe to create a Psycollider.exe
3 # created: 10.12.2005
5 # commandline is: python setup.py py2exe
7 # NOTE: you must copy the PySCLang module into the dist directory manually as it is excluded
8 # this is due to a problem with py2exe when using option bundle_files 1
10 from distutils.core import setup
11 import py2exe
13 setup(
14 version = "3.3 alpha",
15 description = "SuperCollider 3 for Windows (using Psycollider)",
16 name = "SuperCollider",
17 zipfile=None,
18 # needs to be console to prevent empty cmd-windows for scsynth...
19 windows = [
21 "script": "Psycollider.py",
22 "icon_resources": [(1, "Psycollider.ico")]
25 # options for py2exe
26 options = {"py2exe": {
27 "compressed": 0,
28 "optimize": 2,
29 "bundle_files": 1,
30 #"excludes": ["PySCLang"],
31 "dll_excludes": ["MSVCP90.dll", "MSVCP80.dll", "MSVCR80.dll", "libsndfile-1.dll"]