mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-04 10:54:24 -04:00
19 lines
483 B
Python
19 lines
483 B
Python
from direct.showutil.dist import *
|
|
|
|
setup(
|
|
name="asteroids",
|
|
options = {
|
|
'build_p3d': {
|
|
'directories': ['.'],
|
|
'exclude_paths': ['build', 'setup.py', 'requirements.txt', 'wheels'],
|
|
'applications': [Application('main.py', 'asteroids')],
|
|
'deploy_platforms': [
|
|
'manylinux1_x86_64',
|
|
'macosx_10_6_x86_64',
|
|
'win32',
|
|
'win_amd64',
|
|
],
|
|
}
|
|
}
|
|
)
|