Mitchell Stokes c51afaf0cf deploy-ng: Support getting whl files via pip
The samples/asteriods/wheels directory and requirements.txt work-around
can be removed when we can grab py3 whls from PyPI.
2017-01-04 19:02:27 -08:00

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'],
)