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

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

Issue 1920403002: [content/test/gpu] Run pylint check of gpu tests in unittest instead of PRESUBMIT (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update path to LICENSE.txt of logilab/README.chromium Created 4 years, 7 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
OLDNEW
(Empty)
1 # copyright 2003-2014 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 import os
22
23 distname = 'logilab-common'
24 modname = 'common'
25 subpackage_of = 'logilab'
26 subpackage_master = True
27
28 numversion = (0, 63, 2)
29 version = '.'.join([str(num) for num in numversion])
30
31 license = 'LGPL' # 2.1 or later
32 description = "collection of low-level Python packages and modules used by Logil ab projects"
33 web = "http://www.logilab.org/project/%s" % distname
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 install_requires = [
44 'six >= 1.4.0',
45 ]
46 test_require = ['pytz']
47
48 if sys.version_info < (2, 7):
49 install_requires.append('unittest2 >= 0.5.1')
50 if os.name == 'nt':
51 install_requires.append('colorama')
52
53 classifiers = ["Topic :: Utilities",
54 "Programming Language :: Python",
55 "Programming Language :: Python :: 2",
56 "Programming Language :: Python :: 3",
57 ]
OLDNEW
« no previous file with comments | « third_party/logilab/logilab/common/__init__.py ('k') | third_party/logilab/logilab/common/cache.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698