mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-04 19:08:55 -04:00
21 lines
492 B
Python
21 lines
492 B
Python
from setuptools import setup
|
|
|
|
setup(
|
|
name="asteroids",
|
|
options = {
|
|
'build_apps': {
|
|
'directories': ['.'],
|
|
'exclude_paths': ['build', 'setup.py', 'requirements.txt', 'wheels'],
|
|
'gui_apps': {
|
|
'asteroids': 'main.py',
|
|
},
|
|
'deploy_platforms': [
|
|
'manylinux1_x86_64',
|
|
'macosx_10_6_x86_64',
|
|
'win32',
|
|
'win_amd64',
|
|
],
|
|
}
|
|
}
|
|
)
|