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

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

Issue 10447014: Add pylint to depot_tools. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/depot_tools
Patch Set: Fix unittests. Created 8 years, 6 months 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/common/__init__.py ('k') | third_party/logilab/common/cache.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 #
4 # This file is part of logilab-common.
5 #
6 # logilab-common is free software: you can redistribute it and/or modify it unde r
7 # the terms of the GNU Lesser General Public License as published by the Free
8 # Software Foundation, either version 2.1 of the License, or (at your option) an y
9 # later version.
10 #
11 # logilab-common is distributed in the hope that it will be useful, but WITHOUT
12 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
13 # FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
14 # details.
15 #
16 # You should have received a copy of the GNU Lesser General Public License along
17 # with logilab-common. If not, see <http://www.gnu.org/licenses/>.
18 """logilab.common packaging information"""
19 __docformat__ = "restructuredtext en"
20 import sys
21
22 distname = 'logilab-common'
23 modname = 'common'
24 subpackage_of = 'logilab'
25 subpackage_master = True
26
27 numversion = (0, 57, 1)
28 version = '.'.join([str(num) for num in numversion])
29
30 license = 'LGPL' # 2.1 or later
31 description = "collection of low-level Python packages and modules used by Logil ab projects"
32 web = "http://www.logilab.org/project/%s" % distname
33 ftp = "ftp://ftp.logilab.org/pub/%s" % modname
34 mailinglist = "mailto://python-projects@lists.logilab.org"
35 author = "Logilab"
36 author_email = "contact@logilab.fr"
37
38
39 from os.path import join
40 scripts = [join('bin', 'pytest')]
41 include_dirs = [join('test', 'data')]
42
43 if sys.version_info < (2, 7):
44 install_requires = ['unittest2 >= 0.5.1']
45
OLDNEW
« no previous file with comments | « third_party/logilab/common/__init__.py ('k') | third_party/logilab/common/cache.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698