Files
panda3d/samples/asteroids/setup.py
Mitchell Stokes 09bbee8dea deploy-ng: Default platforms to a list of platforms instead of the host platform
The list is:
  * manylinux1_x86_64
  * macosx_10_6_x86_64
  * win_amd64

Of note, win32 is missing from this list. We can add it later if there
is desire.

Also of note, there is now no path to *not* using wheels. We will need
to evaluate if we want to keep this around and, if so, expose it as an
option to users.
2018-12-08 16:19:35 -08:00

24 lines
522 B
Python

from setuptools import setup
setup(
name="asteroids",
options = {
'build_apps': {
'include_patterns': [
'*.png',
'*.jpg',
'*.egg',
],
'gui_apps': {
'asteroids': 'main.py',
},
'log_filename': '$USER_APPDATA/Asteroids/output.log',
'log_append': False,
'plugins': [
'pandagl',
'p3openal_audio',
],
}
}
)