Mac OS X menu item for quickly enabling/disabling HTTP proxy
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

14 satır
309 B

  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. )