1
0
forked from s444417/ProjektAI
ProjektAI/kelner/venv/Lib/site-packages/pygame/examples/macosx/aliens_app_example/setup.py
2020-03-22 02:01:57 +01:00

29 lines
578 B
Python

"""
Script for building the example.
Usage:
python setup.py py2app
"""
from distutils.core import setup
import py2app
NAME = 'aliens'
VERSION = '0.1'
plist = dict(
CFBundleIconFile=NAME,
CFBundleName=NAME,
CFBundleShortVersionString=VERSION,
CFBundleGetInfoString=' '.join([NAME, VERSION]),
CFBundleExecutable=NAME,
CFBundleIdentifier='org.pygame.examples.aliens',
)
setup(
data_files=['English.lproj', '../../data'],
app=[
#dict(script="aliens_bootstrap.py", plist=plist),
dict(script="aliens.py", plist=plist),
],
)