| OLD | NEW |
| 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 import sys | 18 from __future__ import absolute_import |
| 19 | 19 |
| 20 modname = distname = 'pylint' | 20 modname = distname = 'pylint' |
| 21 | 21 |
| 22 numversion = (1, 3, 1) | 22 numversion = (1, 4, 0) |
| 23 version = '.'.join([str(num) for num in numversion]) | 23 version = '.'.join([str(num) for num in numversion]) |
| 24 | 24 |
| 25 if sys.version_info < (2, 6): | 25 install_requires = ['logilab-common >= 0.53.0', 'astroid >= 1.3.2', 'six'] |
| 26 install_requires = ['logilab-common >= 0.53.0', 'astroid >= 1.2.1', | |
| 27 'StringFormat'] | |
| 28 else: | |
| 29 install_requires = ['logilab-common >= 0.53.0', 'astroid >= 1.2.1'] | |
| 30 | 26 |
| 31 license = 'GPL' | 27 license = 'GPL' |
| 32 description = "python code static checker" | 28 description = "python code static checker" |
| 33 web = 'http://www.pylint.org' | 29 web = 'http://www.pylint.org' |
| 34 mailinglist = "mailto://code-quality@python.org" | 30 mailinglist = "mailto://code-quality@python.org" |
| 35 author = 'Logilab' | 31 author = 'Logilab' |
| 36 author_email = 'python-projects@lists.logilab.org' | 32 author_email = 'python-projects@lists.logilab.org' |
| 37 | 33 |
| 38 classifiers = ['Development Status :: 4 - Beta', | 34 classifiers = ['Development Status :: 4 - Beta', |
| 39 'Environment :: Console', | 35 'Environment :: Console', |
| (...skipping 25 matching lines...) Expand all Loading... |
| 65 . | 61 . |
| 66 Pylint is shipped with "pylint-gui", "pyreverse" (UML diagram generator) | 62 Pylint is shipped with "pylint-gui", "pyreverse" (UML diagram generator) |
| 67 and "symilar" (an independent similarities checker).""" | 63 and "symilar" (an independent similarities checker).""" |
| 68 | 64 |
| 69 from os.path import join | 65 from os.path import join |
| 70 scripts = [join('bin', filename) | 66 scripts = [join('bin', filename) |
| 71 for filename in ('pylint', 'pylint-gui', "symilar", "epylint", | 67 for filename in ('pylint', 'pylint-gui', "symilar", "epylint", |
| 72 "pyreverse")] | 68 "pyreverse")] |
| 73 | 69 |
| 74 include_dirs = ['test'] | 70 include_dirs = ['test'] |
| OLD | NEW |