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

Side by Side Diff: third_party/logilab/astroid/__pkginfo__.py

Issue 753543006: pylint: upgrade to 1.4.0 (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/depot_tools.git@master
Patch Set: Created 6 years 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/logilab/astroid/__init__.py ('k') | third_party/logilab/astroid/as_string.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 # copyright 2003-2013 LOGILAB S.A. (Paris, FRANCE), all rights reserved. 1 # copyright 2003-2013 LOGILAB S.A. (Paris, FRANCE), all rights reserved.
2 # contact http://www.logilab.fr/ -- mailto:contact@logilab.fr 2 # contact http://www.logilab.fr/ -- mailto:contact@logilab.fr
3 # 3 #
4 # This file is part of astroid. 4 # This file is part of astroid.
5 # 5 #
6 # astroid is free software: you can redistribute it and/or modify it 6 # astroid is free software: you can redistribute it and/or modify it
7 # under the terms of the GNU Lesser General Public License as published by the 7 # under the terms of the GNU Lesser General Public License as published by the
8 # Free Software Foundation, either version 2.1 of the License, or (at your 8 # Free Software Foundation, either version 2.1 of the License, or (at your
9 # option) any later version. 9 # option) any later version.
10 # 10 #
11 # astroid is distributed in the hope that it will be useful, but 11 # astroid is distributed in the hope that it will be useful, but
12 # WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 12 # WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 # FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License 13 # FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
14 # for more details. 14 # for more details.
15 # 15 #
16 # You should have received a copy of the GNU Lesser General Public License along 16 # You should have received a copy of the GNU Lesser General Public License along
17 # with astroid. If not, see <http://www.gnu.org/licenses/>. 17 # with astroid. If not, see <http://www.gnu.org/licenses/>.
18 """astroid packaging information""" 18 """astroid packaging information"""
19
20 distname = 'astroid' 19 distname = 'astroid'
21 20
22 modname = 'astroid' 21 modname = 'astroid'
23 22
24 numversion = (1, 2, 1) 23 numversion = (1, 3, 2)
25 version = '.'.join([str(num) for num in numversion]) 24 version = '.'.join([str(num) for num in numversion])
26 25
27 install_requires = ['logilab-common >= 0.60.0'] 26 install_requires = ['logilab-common >= 0.60.0', 'six']
28 27
29 license = 'LGPL' 28 license = 'LGPL'
30 29
31 author = 'Logilab' 30 author = 'Logilab'
32 author_email = 'python-projects@lists.logilab.org' 31 author_email = 'pylint-dev@lists.logilab.org'
33 mailinglist = "mailto://%s" % author_email 32 mailinglist = "mailto://%s" % author_email
34 web = 'http://bitbucket.org/logilab/astroid' 33 web = 'http://bitbucket.org/logilab/astroid'
35 34
36 description = "rebuild a new abstract syntax tree from Python's ast" 35 description = "A abstract syntax tree for Python with inference support."
37
38 from os.path import join
39 include_dirs = ['brain',
40 join('test', 'regrtest_data'),
41 join('test', 'data'), join('test', 'data2')
42 ]
43 36
44 classifiers = ["Topic :: Software Development :: Libraries :: Python Modules", 37 classifiers = ["Topic :: Software Development :: Libraries :: Python Modules",
45 "Topic :: Software Development :: Quality Assurance", 38 "Topic :: Software Development :: Quality Assurance",
46 "Programming Language :: Python", 39 "Programming Language :: Python",
47 "Programming Language :: Python :: 2", 40 "Programming Language :: Python :: 2",
48 "Programming Language :: Python :: 3", 41 "Programming Language :: Python :: 3",
49 ] 42 ]
OLDNEW
« no previous file with comments | « third_party/logilab/astroid/__init__.py ('k') | third_party/logilab/astroid/as_string.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698