root / logilab.pylintinstaller / logilab / astng / __pkginfo__.py

Revision 202:d67e86292521, 2.2 kB (checked in by tziade@…, 9 months ago)

added logilab.pylintinstaller

Line 
1# pylint: disable-msg=W0622
2#
3# Copyright (c) 2003-2008 LOGILAB S.A. (Paris, FRANCE).
4# http://www.logilab.fr/ -- mailto:contact@logilab.fr
5#
6# This program is free software; you can redistribute it and/or modify it under
7# the terms of the GNU General Public License as published by the Free Software
8# Foundation; either version 2 of the License, or (at your option) any later
9# version.
10#
11# This program 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 General Public License for more details.
14#
15# You should have received a copy of the GNU General Public License along with
16# this program; if not, write to the Free Software Foundation, Inc.,
17# 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
18"""
19logilab.astng packaging information
20"""
21
22modname = 'astng'
23distname = 'logilab-astng'
24numversion = (0, 17, 2)
25version = '.'.join([str(num) for num in numversion])
26pyversions = ["2.3", "2.4", "2.5"]
27
28license = 'GPL'
29copyright = '''Copyright (c) 2003-2008 LOGILAB S.A. (Paris, FRANCE).
30http://www.logilab.fr/ -- mailto:contact@logilab.fr'''
31
32author = 'Sylvain Thenault'
33author_email = 'sylvain.thenault@logilab.fr'
34
35short_desc = "extend python's abstract syntax tree"
36
37long_desc = """The aim of this module is to provide a common base \
38representation of
39python source code for projects such as pychecker, pyreverse,
40pylint... Well, actually the development of this library is essentialy
41governed by pylint's needs.
42
43It extends class defined in the compiler.ast [1] module with some
44additional methods and attributes. Instance attributes are added by a
45builder object, which can either generate extended ast (let's call
46them astng ;) by visiting an existant ast tree or by inspecting living
47object. Methods are added by monkey patching ast classes."""
48
49
50web = "http://www.logilab.org/project/name/%s" % distname
51ftp = "ftp://ftp.logilab.org/pub/%s" % modname
52mailinglist = "mailto://python-projects@lists.logilab.org"
53
54subpackage_of = 'logilab'
55
56from os.path import join
57include_dirs = [join('test', 'regrtest_data'),
58                join('test', 'data'), join('test', 'data2')]
59
60debian_uploader = 'Alexandre Fayolle <afayolle@debian.org>'
Note: See TracBrowser for help on using the browser.