• Home
  • History
  • Annotate
  • Line#
  • Navigate
  • Raw
  • Download
  • only in /macosx-10.9.5/pyobjc-42/2.5/pyobjc/pyobjc-framework-Cocoa/Examples/AppKit/DragItemAround/
1"""
2Script for building the example.
3
4Usage:
5    python setup.py py2app
6"""
7from setuptools import setup
8
9setup(
10    name='DragItemAround',
11    app=["DragItemAround.py"],
12    data_files=["MainMenu.nib"],
13    setup_requires=["py2app"],
14)
15