Mac OS X menu item for quickly enabling/disabling HTTP proxy
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
364 B

  1. from distutils.core import setup
  2. from glob import glob
  3. import py2app, sys, os, commands
  4. setup(
  5. app = [ 'ToggleProxy.py' ],
  6. data_files = [
  7. 'resources/active.png',
  8. 'resources/inactive.png'
  9. ],
  10. options = dict(py2app = dict(
  11. plist = dict(
  12. LSBackgroundOnly = True
  13. )
  14. ))
  15. )