~ubuntu-branches/ubuntu/trusty/pylint/trusty

« back to all changes in this revision

Viewing changes to __pkginfo__.py

  • Committer: Bazaar Package Importer
  • Author(s): Sandro Tosi
  • Date: 2009-03-27 09:45:39 UTC
  • mfrom: (1.1.10 upstream)
  • Revision ID: james.westby@ubuntu.com-20090327094539-xe2s86jkbvdv3xhb
Tags: 0.18.0-1
* New upstream release
* debian/copyright
  - added packaging copyright for the work I do
  - clearly separated copyright and license notices, indenting by 4 spaces
  - link to GPL-2 file, not to the generic GPL
* debian/control
  - updated Homepage field
  - bump versions for python-logilab-common and python-logilab-astng depends
  - bump Standard-Versions to 3.8.1 (no changes needed)
* debian/{control, rules}
  - switch from python-central to python-support
* debian/rules
  - 'build' is a dir, we need to clean with 'rm'

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
# 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
17
17
"""pylint packaging information"""
18
18
 
19
 
modname = 'pylint'
 
19
modname = distname = 'pylint'
20
20
 
21
 
numversion = (0, 16, 0)
 
21
numversion = (0, 18, 0)
22
22
version = '.'.join([str(num) for num in numversion])
23
23
 
 
24
 
 
25
install_requires = ['logilab-common', 'logilab-astng >= 0.19.0']
 
26
 
 
27
pyversions = ["2.3", "2.4", "2.5", '2.6'] # maybe 2.2 as well
 
28
 
 
29
author = 'Logilab'
 
30
author_email = 'python-projects@lists.logilab.org'
 
31
mailinglist = "mailto://%s" % author_email
 
32
web = "http://www.logilab.org/project/%s" % distname
 
33
ftp = "ftp://ftp.logilab.org/pub/%s" % modname
24
34
license = 'GPL'
25
 
copyright = '''Copyright (c) 2003-2009 Sylvain Thenault (thenault@gmail.com).
26
 
Copyright (c) 2003-2008 LOGILAB S.A. (Paris, FRANCE).
27
 
http://www.logilab.fr/ -- mailto:contact@logilab.fr'''
 
35
 
 
36
classifiers =  ['Development Status :: 4 - Beta',
 
37
                'Environment :: Console',
 
38
                'Intended Audience :: Developers',
 
39
                'License :: OSI Approved :: GNU General Public License (GPL)',
 
40
                'Operating System :: OS Independent',
 
41
                'Programming Language :: Python',
 
42
                'Topic :: Software Development :: Debuggers',
 
43
                'Topic :: Software Development :: Quality Assurance',
 
44
                'Topic :: Software Development :: Testing',
 
45
                ]
 
46
 
28
47
 
29
48
short_desc = "python code static checker"
30
49
long_desc = """\
41
60
 .
42
61
 Additionally, it is possible to write plugins to add your own checks."""
43
62
 
44
 
author = "Sylvain Thenault"
45
 
author_email = "sylvain.thenault@logilab.fr"
46
 
 
47
 
web = "http://www.logilab.org/project/name/%s" % modname
48
 
ftp = "ftp://ftp.logilab.org/pub/%s" % modname
49
 
mailinglist = "mailto://python-projects@logilab.org"
50
 
 
51
63
from os.path import join
52
64
scripts = [join('bin', filename) for filename in 
53
65
            ('pylint', 'pylint-gui', "symilar", "epylint", "pyreverse")]
54
66
 
55
 
include_dirs = [join('test', 'input'),
56
 
                join('test', 'messages'),
57
 
                join('test', 'rpythonmessages'),
58
 
                join('test', 'regrtest_data')]
59
 
 
60
 
pyversions = ["2.3", "2.4", "2.5"]
61
 
 
62
 
debian_uploader = 'Alexandre Fayolle <afayolle@debian.org>'
63
 
 
64
 
classifiers =  ['Development Status :: 4 - Beta',
65
 
                'Environment :: Console',
66
 
                'Intended Audience :: Developers',
67
 
                'License :: OSI Approved :: GNU General Public License (GPL)',
68
 
                'Operating System :: OS Independent',
69
 
                'Programming Language :: Python',
70
 
                'Topic :: Software Development :: Debuggers',
71
 
                'Topic :: Software Development :: Quality Assurance',
72
 
                'Topic :: Software Development :: Testing',
73
 
                ]
74
 
 
75
 
install_requires = ['logilab-common', 'logilab-astng >= 0.17.4']