mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-04 19:08:55 -04:00

This allows setuptools to automatically find build_p3d and bdist_p3d_archive. NOTE: Importing direct.showutil.dist.setup still works for installs that are not using wheels.
21 lines
491 B
Python
21 lines
491 B
Python
from setuptools import setup
|
|
|
|
setup(
|
|
name="asteroids",
|
|
options = {
|
|
'build_p3d': {
|
|
'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',
|
|
],
|
|
}
|
|
}
|
|
)
|