• Home
  • History
  • Annotate
  • Line#
  • Navigate
  • Raw
  • Download
  • only in /macosx-10.9.5/pyobjc-42/2.5/pyobjc/pyobjc-framework-Quartz/Examples/Core Image/CIMicroPaint/
1"""
2Script for building the example.
3
4Usage:
5    python setup.py py2app
6"""
7from distutils.core import setup
8import py2app
9
10setup(
11    name='CIMicroPaint',
12    app=["main.py"],
13    data_files=["English.lproj"],
14    install_requires = [ 'PyOpenGL' ],
15)
16
17