-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
55 lines (44 loc) · 993 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
"""
This is a setup.py script generated by py2applet
Usage:
python setup.py py2app
"""
from setuptools import setup
import sys
mainscript = 'run.py'
if sys.platform == 'darwin':
OPTIONS = {
'argv_emulation': True,
'optimize': 2,
'compressed': True,
'includes': ['pyglet.media.drivers.openal', 'pyglet.image.codecs.pil'],
'frameworks': ['libavbin.dylib'],
'resources': ['data'],
'semi_standalone': True
}
extra_args = {
'setup_requires': ['py2app'],
'app': [mainscript],
'options': {'py2app': OPTIONS}
}
elif sys.platform == 'win32':
import py2exe
OPTIONS = {
'bundle_files': 1,
'optimize': 2,
'compressed': True,
'includes': ['pyglet.media.drivers.directsound', 'pyglet.image.codecs.pil'],
}
extra_args = {
'setup_requires': ['py2exe'],
'windows': [{'script': mainscript, 'dest_base': r'Ashima IV'}],
'options': {'py2exe': OPTIONS}
}
else:
extra_args = {
scripts: [mainscript]
}
setup(
name='Ashima IV',
**extra_args
)