Index: third_party/pylint/__pkginfo__.py |
diff --git a/third_party/pylint/__pkginfo__.py b/third_party/pylint/__pkginfo__.py |
index f8bd352b2377e11b0d08a427f7f00d6bf9c8cafc..2a6ac3ab9f4e05ac9c1be3244ad2bd602889f528 100644 |
--- a/third_party/pylint/__pkginfo__.py |
+++ b/third_party/pylint/__pkginfo__.py |
@@ -1,5 +1,5 @@ |
# pylint: disable=W0622,C0103 |
-# Copyright (c) 2003-2014 LOGILAB S.A. (Paris, FRANCE). |
+# Copyright (c) 2003-2011 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,40 +13,35 @@ |
# |
# 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., |
-# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
+# 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
"""pylint packaging information""" |
-import sys |
modname = distname = 'pylint' |
-numversion = (1, 3, 1) |
+numversion = (0, 25, 1) |
version = '.'.join([str(num) for num in numversion]) |
-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'] |
+install_requires = ['logilab-common >= 0.53.0', 'logilab-astng >= 0.21.1'] |
license = 'GPL' |
+copyright = 'Logilab S.A.' |
description = "python code static checker" |
-web = 'http://www.pylint.org' |
-mailinglist = "mailto://code-quality@python.org" |
+web = "http://www.logilab.org/project/%s" % distname |
+ftp = "ftp://ftp.logilab.org/pub/%s" % modname |
+mailinglist = "mailto://python-projects@lists.logilab.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', |
- 'Programming Language :: Python :: 2', |
- 'Programming Language :: Python :: 3', |
- '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', |
+ 'Topic :: Software Development :: Debuggers', |
+ 'Topic :: Software Development :: Quality Assurance', |
+ 'Topic :: Software Development :: Testing', |
+ ] |
long_desc = """\ |
@@ -71,4 +66,3 @@ scripts = [join('bin', filename) |
for filename in ('pylint', 'pylint-gui', "symilar", "epylint", |
"pyreverse")] |
-include_dirs = ['test'] |