mirror of
https://github.com/panda3d/panda3d.git
synced 2026-02-04 22:29:06 -06:00
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.
24 lines
522 B
Python
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',
|
|
],
|
|
}
|
|
}
|
|
)
|