root / logilab.pylintinstaller / logilab / common / __pkginfo__.py

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

added logilab.pylintinstaller

Line 
1# Copyright (c) 2003-2008 LOGILAB S.A. (Paris, FRANCE).
2# http://www.logilab.fr/ -- mailto:contact@logilab.fr
3
4# This program is free software; you can redistribute it and/or modify it under
5# the terms of the GNU General Public License as published by the Free Software
6# Foundation; either version 2 of the License, or (at your option) any later
7# version.
8
9# This program is distributed in the hope that it will be useful, but WITHOUT
10# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
11# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
12
13# You should have received a copy of the GNU General Public License along with
14# this program; if not, write to the Free Software Foundation, Inc.,
15# 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
16"""logilab.common packaging information"""
17
18distname = 'logilab-common'
19modname = 'common'
20numversion = (0, 28, 2)
21version = '.'.join([str(num) for num in numversion])
22
23license = 'GPL'
24copyright = '''Copyright (c) 2003-2008 LOGILAB S.A. (Paris, FRANCE).
25http://www.logilab.fr/ -- mailto:contact@logilab.fr'''
26
27author = "Logilab"
28author_email = "devel@logilab.fr"
29
30short_desc = "useful miscellaneous modules used by Logilab projects"
31
32long_desc = """logilab-common is a collection of low-level Python packages and \
33modules,
34 designed to ease:
35  * handling command line options and configuration files
36  * writing interactive command line tools
37  * manipulation files and character strings
38  * interfacing to OmniORB
39  * generating of SQL queries
40  * running unit tests
41  * manipulating tree structures
42  * accessing RDBMS (currently postgreSQL, mysql and sqlite)
43  * generating text and HTML reports
44  * logging"""
45
46
47web = "http://www.logilab.org/project/%s" % distname
48ftp = "ftp://ftp.logilab.org/pub/%s" % modname
49mailinglist = "mailto://python-projects@lists.logilab.org"
50
51subpackage_of = 'logilab'
52subpackage_master = True
53
54scripts = ('bin/pytest',)
55from os.path import join
56include_dirs = [join('test', 'data')]
57pyversions = ['2.3', '2.4', '2.5']
58debian_maintainer = 'Alexandre Fayolle'
59debian_maintainer_email = 'afayolle@debian.org'
Note: See TracBrowser for help on using the browser.