1from distutils.core import setup
2import py2app
3
4setup(
5    app=['CurrencyConverter.py'],
6    data_files=['English.lproj'],
7)
8