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

The samples/asteriods/wheels directory and requirements.txt work-around can be removed when we can grab py3 whls from PyPI.
10 lines
226 B
Python
10 lines
226 B
Python
from direct.showutil.dist import *
|
|
|
|
setup(
|
|
name="asteroids",
|
|
directories=['.'],
|
|
exclude_paths=['build', 'setup.py'],
|
|
applications=[Application('main.py', 'asteroids')],
|
|
deploy_platforms=['linux_x86_64'],
|
|
)
|