2 from distutils
.core
import setup
11 raise SystemExit, "py2exe or py2app must be installed."
14 my_files
= os
.listdir(".")
15 my_files
= [file for file in my_files
if file not in ("dist", "build")]
17 setup(app
=["singularity.py"], console
=["singularity.py"],
18 name
="Endgame Singularity",
20 description
="A simulation of a true AI",
21 author
="Evil Mr Henry",
22 author_email
="evilmrhenry@emhsoft.com",
23 url
= "http://www.emhsoft.com/singularity/index.html",
25 options
= dict( py2app
= dict(archs
= "x86,ppc",
26 resources
= ",".join(my_files
)
28 py2exe
= dict(compressed
= True,