📄 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 + -