| Index: third_party/pylint/__pkginfo__.py
|
| ===================================================================
|
| --- third_party/pylint/__pkginfo__.py (revision 292986)
|
| +++ third_party/pylint/__pkginfo__.py (working copy)
|
| @@ -1,5 +1,5 @@
|
| # pylint: disable=W0622,C0103
|
| -# Copyright (c) 2003-2011 LOGILAB S.A. (Paris, FRANCE).
|
| +# Copyright (c) 2003-2014 LOGILAB S.A. (Paris, FRANCE).
|
| # http://www.logilab.fr/ -- mailto:contact@logilab.fr
|
| #
|
| # This program is free software; you can redistribute it and/or modify it under
|
| @@ -13,35 +13,40 @@
|
| #
|
| # You should have received a copy of the GNU General Public License along with
|
| # this program; if not, write to the Free Software Foundation, Inc.,
|
| -# 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
| +# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
| """pylint packaging information"""
|
| +import sys
|
|
|
| modname = distname = 'pylint'
|
|
|
| -numversion = (0, 25, 1)
|
| +numversion = (1, 3, 1)
|
| version = '.'.join([str(num) for num in numversion])
|
|
|
| -install_requires = ['logilab-common >= 0.53.0', 'logilab-astng >= 0.21.1']
|
| +if sys.version_info < (2, 6):
|
| + install_requires = ['logilab-common >= 0.53.0', 'astroid >= 1.2.1',
|
| + 'StringFormat']
|
| +else:
|
| + install_requires = ['logilab-common >= 0.53.0', 'astroid >= 1.2.1']
|
|
|
| license = 'GPL'
|
| -copyright = 'Logilab S.A.'
|
| description = "python code static checker"
|
| -web = "http://www.logilab.org/project/%s" % distname
|
| -ftp = "ftp://ftp.logilab.org/pub/%s" % modname
|
| -mailinglist = "mailto://python-projects@lists.logilab.org"
|
| +web = 'http://www.pylint.org'
|
| +mailinglist = "mailto://code-quality@python.org"
|
| author = 'Logilab'
|
| author_email = 'python-projects@lists.logilab.org'
|
|
|
| -classifiers = ['Development Status :: 4 - Beta',
|
| - 'Environment :: Console',
|
| - 'Intended Audience :: Developers',
|
| - 'License :: OSI Approved :: GNU General Public License (GPL)',
|
| - 'Operating System :: OS Independent',
|
| - 'Programming Language :: Python',
|
| - 'Topic :: Software Development :: Debuggers',
|
| - 'Topic :: Software Development :: Quality Assurance',
|
| - 'Topic :: Software Development :: Testing',
|
| - ]
|
| +classifiers = ['Development Status :: 4 - Beta',
|
| + 'Environment :: Console',
|
| + 'Intended Audience :: Developers',
|
| + 'License :: OSI Approved :: GNU General Public License (GPL)',
|
| + 'Operating System :: OS Independent',
|
| + 'Programming Language :: Python',
|
| + 'Programming Language :: Python :: 2',
|
| + 'Programming Language :: Python :: 3',
|
| + 'Topic :: Software Development :: Debuggers',
|
| + 'Topic :: Software Development :: Quality Assurance',
|
| + 'Topic :: Software Development :: Testing'
|
| + ]
|
|
|
|
|
| long_desc = """\
|
| @@ -66,3 +71,4 @@
|
| for filename in ('pylint', 'pylint-gui', "symilar", "epylint",
|
| "pyreverse")]
|
|
|
| +include_dirs = ['test']
|
|
|