mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-04 10:54:24 -04:00

This script will run python setup.py bdist_apps on each sample in a list (currently only contains asteroids). The script will fail if any of the builds fail. We can use this for some automated sanitity checking of deploy-ng builds.
28 lines
594 B
Python
28 lines
594 B
Python
from setuptools import setup
|
|
|
|
setup(
|
|
name="asteroids",
|
|
options = {
|
|
'build_apps': {
|
|
'include_patterns': [
|
|
'*.png',
|
|
'*.jpg',
|
|
'*.egg',
|
|
],
|
|
'gui_apps': {
|
|
'asteroids': 'main.py',
|
|
},
|
|
'plugins': [
|
|
'pandagl',
|
|
'p3openal_audio',
|
|
],
|
|
'platforms': [
|
|
'manylinux1_x86_64',
|
|
'macosx_10_6_x86_64',
|
|
'win32',
|
|
'win_amd64',
|
|
],
|
|
}
|
|
}
|
|
)
|