-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (27 loc) · 814 Bytes
/
setup.py
File metadata and controls
33 lines (27 loc) · 814 Bytes
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
from setuptools import setup
setup(
name='EYES',
options={
'build_apps': {
# Build asteroids.exe as a GUI application
'console_apps': {
'EYES': 'run.py',
},
# Set up output logging, important for GUI apps!
'log_filename': 'output.log',
'log_append': False,
# Specify which files are included with the distribution
'include_patterns': [
'img.mf',
'config/Config.prc'
],
'use_optimized_wheels': False,
# Include the OpenGL renderer and OpenAL audio plug-in
'plugins': [
'pandagl',
'p3openal_audio',
],
'platforms': ['win_amd64']
}
}
)