Mitchell Stokes 09eb22b61e deploy-ng: Add plugins option to specify which plugins to copy
NOTE: pandagl is no longer automatically copied and a graphics plugin
must be specified.

TODO: Per-platform overrides
2017-07-06 19:33:16 -07:00

24 lines
571 B
Python

from setuptools import setup
setup(
name="asteroids",
options = {
'build_apps': {
'copy_paths': ['.'],
'exclude_paths': ['build/*', 'setup.py', 'requirements.txt', 'wheels/*', '*.swp'],
'gui_apps': {
'asteroids': 'main.py',
},
'plugins': [
'pandagl',
],
'deploy_platforms': [
'manylinux1_x86_64',
'macosx_10_6_x86_64',
'win32',
'win_amd64',
],
}
}
)