Mac OS X menu item for quickly enabling/disabling HTTP proxy
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

setup.py 309 B

12 년 전
12345678910111213
  1. from distutils.core import setup
  2. from glob import glob
  3. import py2app, sys, os, commands
  4. # define distutils setup structure
  5. setup(
  6. app = [ 'ProxySwitcher.py' ],
  7. options = dict(py2app = dict(
  8. plist = dict(
  9. LSBackgroundOnly = True
  10. )
  11. ))
  12. )