~jtaylor/ubuntu/natty/singularity/fix-576504

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# setup.py
from distutils.core import setup

versionnum="0.28a"
try:
    import py2exe
except ImportError:
    try:
        import py2app
    except ImportError:
        raise SystemExit, "py2exe or py2app must be installed."

import os
my_files = os.listdir(".")
my_files = [file for file in my_files if file not in ("dist", "build")]

setup(app=["singularity.py"], console=["singularity.py"],
    name="Endgame Singularity",
    version=versionnum,
    description="A simulation of a true AI",
    author="Evil Mr Henry",
    author_email="evilmrhenry@emhsoft.com",
    url = "http://www.emhsoft.com/singularity/index.html",
    license = "GPL",
    options = dict( py2app = dict(archs = "x86,ppc",
                                  resources = ",".join(my_files)
                                  ),
                    py2exe = dict(compressed = True,
                                  bundle_files = 1
                                  )
                    )
    )