Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3)

Side by Side Diff: third_party/pylint/pylint/__pkginfo__.py

Issue 1920403002: [content/test/gpu] Run pylint check of gpu tests in unittest instead of PRESUBMIT (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update path to LICENSE.txt of logilab/README.chromium Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « third_party/pylint/pylint/__main__.py ('k') | third_party/pylint/pylint/checkers/__init__.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # pylint: disable=W0622,C0103
2 # Copyright (c) 2003-2014 LOGILAB S.A. (Paris, FRANCE).
3 # http://www.logilab.fr/ -- mailto:contact@logilab.fr
4 #
5 # This program is free software; you can redistribute it and/or modify it under
6 # the terms of the GNU General Public License as published by the Free Software
7 # Foundation; either version 2 of the License, or (at your option) any later
8 # version.
9 #
10 # This program is distributed in the hope that it will be useful, but WITHOUT
11 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
12 # FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details
13 #
14 # You should have received a copy of the GNU General Public License along with
15 # this program; if not, write to the Free Software Foundation, Inc.,
16 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
17 """pylint packaging information"""
18 from __future__ import absolute_import
19
20 modname = distname = 'pylint'
21
22 numversion = (1, 4, 1)
23 version = '.'.join([str(num) for num in numversion])
24
25 install_requires = ['logilab-common >= 0.53.0', 'astroid >= 1.3.3', 'six']
26
27 license = 'GPL'
28 description = "python code static checker"
29 web = 'http://www.pylint.org'
30 mailinglist = "mailto://code-quality@python.org"
31 author = 'Logilab'
32 author_email = 'python-projects@lists.logilab.org'
33
34 classifiers = ['Development Status :: 4 - Beta',
35 'Environment :: Console',
36 'Intended Audience :: Developers',
37 'License :: OSI Approved :: GNU General Public License (GPL)',
38 'Operating System :: OS Independent',
39 'Programming Language :: Python',
40 'Programming Language :: Python :: 2',
41 'Programming Language :: Python :: 3',
42 'Topic :: Software Development :: Debuggers',
43 'Topic :: Software Development :: Quality Assurance',
44 'Topic :: Software Development :: Testing'
45 ]
46
47
48 long_desc = """\
49 Pylint is a Python source code analyzer which looks for programming
50 errors, helps enforcing a coding standard and sniffs for some code
51 smells (as defined in Martin Fowler's Refactoring book)
52 .
53 Pylint can be seen as another PyChecker since nearly all tests you
54 can do with PyChecker can also be done with Pylint. However, Pylint
55 offers some more features, like checking length of lines of code,
56 checking if variable names are well-formed according to your coding
57 standard, or checking if declared interfaces are truly implemented,
58 and much more.
59 .
60 Additionally, it is possible to write plugins to add your own checks.
61 .
62 Pylint is shipped with "pylint-gui", "pyreverse" (UML diagram generator)
63 and "symilar" (an independent similarities checker)."""
64
65 from os.path import join
66 scripts = [join('bin', filename)
67 for filename in ('pylint', 'pylint-gui', "symilar", "epylint",
68 "pyreverse")]
69
70 include_dirs = ['test']
OLDNEW
« no previous file with comments | « third_party/pylint/pylint/__main__.py ('k') | third_party/pylint/pylint/checkers/__init__.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698