?? setup.py
字號:
#!/usr/bin/env python# Setup script for the libgmail package# Usage: # To create a source package; python setup.py sdist# To install to your system; python setup.py installimport libgmailfrom distutils.core import setupmods = ['libgmail','lgconstants','gmail_transport']setup (name = "libgmail", version = "%s" % libgmail.Version, description = "python bindings to access Gmail", author = "wdaher@mit.edu,stas@linux.isbeter.nl,follower@myrealbox.com", author_email = "libgmail-developer@lists.sf.net", url = "http://libgmail.sourceforge.net/", license = "GPL", py_modules = mods, )
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -