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

NOTE: pandagl is no longer automatically copied and a graphics plugin must be specified. TODO: Per-platform overrides
24 lines
571 B
Python
24 lines
571 B
Python
from setuptools import setup
|
|
|
|
setup(
|
|
name="asteroids",
|
|
options = {
|
|
'build_apps': {
|
|
'copy_paths': ['.'],
|
|
'exclude_paths': ['build/*', 'setup.py', 'requirements.txt', 'wheels/*', '*.swp'],
|
|
'gui_apps': {
|
|
'asteroids': 'main.py',
|
|
},
|
|
'plugins': [
|
|
'pandagl',
|
|
],
|
|
'deploy_platforms': [
|
|
'manylinux1_x86_64',
|
|
'macosx_10_6_x86_64',
|
|
'win32',
|
|
'win_amd64',
|
|
],
|
|
}
|
|
}
|
|
)
|