This repository was archived by the owner on Jul 13, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
31 lines (29 loc) · 1.41 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
from setuptools import setup
setup(name='cpplint',
version='0.0.5',
py_modules=['cpplint'],
# generate platform specific start script
entry_points={
'console_scripts': [
'cpplint = cpplint:main'
]
},
install_requires=[],
url="http://en.wikipedia.org/wiki/Cpplint",
download_url="https://github.com/tkruse/cpplint",
keywords=["lint", "python", "c++"],
maintainer = 'Thibault Kruse',
maintainer_email = '[email protected]',
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/""")