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

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

Issue 876793002: pylint: upgrade to 1.4.1 (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/depot_tools.git@master
Patch Set: Created 5 years, 10 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/README.chromium ('k') | third_party/pylint/checkers/base.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # pylint: disable=W0622,C0103 1 # pylint: disable=W0622,C0103
2 # Copyright (c) 2003-2014 LOGILAB S.A. (Paris, FRANCE). 2 # Copyright (c) 2003-2014 LOGILAB S.A. (Paris, FRANCE).
3 # http://www.logilab.fr/ -- mailto:contact@logilab.fr 3 # http://www.logilab.fr/ -- mailto:contact@logilab.fr
4 # 4 #
5 # This program is free software; you can redistribute it and/or modify it under 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 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 7 # Foundation; either version 2 of the License, or (at your option) any later
8 # version. 8 # version.
9 # 9 #
10 # This program is distributed in the hope that it will be useful, but WITHOUT 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 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 12 # FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details
13 # 13 #
14 # You should have received a copy of the GNU General Public License along with 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., 15 # this program; if not, write to the Free Software Foundation, Inc.,
16 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. 16 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
17 """pylint packaging information""" 17 """pylint packaging information"""
18 from __future__ import absolute_import 18 from __future__ import absolute_import
19 19
20 modname = distname = 'pylint' 20 modname = distname = 'pylint'
21 21
22 numversion = (1, 4, 0) 22 numversion = (1, 4, 1)
23 version = '.'.join([str(num) for num in numversion]) 23 version = '.'.join([str(num) for num in numversion])
24 24
25 install_requires = ['logilab-common >= 0.53.0', 'astroid >= 1.3.2', 'six'] 25 install_requires = ['logilab-common >= 0.53.0', 'astroid >= 1.3.3', 'six']
26 26
27 license = 'GPL' 27 license = 'GPL'
28 description = "python code static checker" 28 description = "python code static checker"
29 web = 'http://www.pylint.org' 29 web = 'http://www.pylint.org'
30 mailinglist = "mailto://code-quality@python.org" 30 mailinglist = "mailto://code-quality@python.org"
31 author = 'Logilab' 31 author = 'Logilab'
32 author_email = 'python-projects@lists.logilab.org' 32 author_email = 'python-projects@lists.logilab.org'
33 33
34 classifiers = ['Development Status :: 4 - Beta', 34 classifiers = ['Development Status :: 4 - Beta',
35 'Environment :: Console', 35 'Environment :: Console',
(...skipping 25 matching lines...) Expand all
61 . 61 .
62 Pylint is shipped with "pylint-gui", "pyreverse" (UML diagram generator) 62 Pylint is shipped with "pylint-gui", "pyreverse" (UML diagram generator)
63 and "symilar" (an independent similarities checker).""" 63 and "symilar" (an independent similarities checker)."""
64 64
65 from os.path import join 65 from os.path import join
66 scripts = [join('bin', filename) 66 scripts = [join('bin', filename)
67 for filename in ('pylint', 'pylint-gui', "symilar", "epylint", 67 for filename in ('pylint', 'pylint-gui', "symilar", "epylint",
68 "pyreverse")] 68 "pyreverse")]
69 69
70 include_dirs = ['test'] 70 include_dirs = ['test']
OLDNEW
« no previous file with comments | « third_party/pylint/README.chromium ('k') | third_party/pylint/checkers/base.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698