Ai
2 Star 0 Fork 0

玖玖/cpplint

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
setup.py 1.48 KB
一键复制 编辑 原始数据 按行查看 历史
Itamar Ostricher 提交于 2015-03-01 21:13 +08:00 . add nitpick to setup.py
from setuptools import setup
setup(name='cpplint',
version='0.0.5',
py_modules=['cpplint', 'nitpick'],
# generate platform specific start script
entry_points={
'console_scripts': [
'cpplint = cpplint:main',
'nitpick = nitpick:main',
]
},
install_requires=[],
url="http://en.wikipedia.org/wiki/Cpplint",
download_url="https://github.com/TheOstrichIO/cpplint",
keywords=["lint", "python", "c++"],
maintainer = 'Thibault Kruse, Itamar Ostricher',
maintainer_email = 'see_github@nospam.com',
classifiers=["Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"Programming Language :: C++",
"License :: Freely Distributable"],
description="This is automated checker to make sure a C++ file follows Google's C++ style guide",
long_description="""This is automated checker to make sure a C++ file follows Google's C++ style
guide (http://google-styleguide.googlecode.com/svn/trunk/cppguide.xml). As it
heavily relies on regular expressions, cpplint.py won't catch all violations of
the style guide and will very occasionally report a false positive. There is a
list of things we currently don't handle very well at the top of cpplint.py,
and we welcome patches to improve it.
Original SVN download URL: http://google-styleguide.googlecode.com/svn/trunk/cpplint/""")
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/ZJWind/cpplint.git
git@gitee.com:ZJWind/cpplint.git
ZJWind
cpplint
cpplint
master

搜索帮助