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

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

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

Powered by Google App Engine
This is Rietveld 408576698