-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
33 lines (29 loc) · 980 Bytes
/
setup.py
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
# setup.py
from distutils.core import setup
versionnum="0.30c"
try:
import py2exe
except ImportError:
try:
import py2app
except ImportError:
raise SystemExit, "py2exe or py2app must be installed."
import os, pygame
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="[email protected]",
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
)
)
)