Statistics
| Revision:

gvsig-scripting / org.gvsig.scripting / trunk / org.gvsig.scripting / org.gvsig.scripting.app / org.gvsig.scripting.app.mainplugin / src / main / resources-plugin / scripting / lib / astroid / __pkginfo__.py @ 745

History | View | Annotate | Download (1.56 KB)

1
# copyright 2003-2013 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 astroid.
5
#
6
# astroid is free software: you can redistribute it and/or modify it
7
# under the terms of the GNU Lesser General Public License as published by the
8
# Free Software Foundation, either version 2.1 of the License, or (at your
9
# option) any later version.
10
#
11
# astroid is distributed in the hope that it will be useful, but
12
# WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13
# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License
14
# for more details.
15
#
16
# You should have received a copy of the GNU Lesser General Public License along
17
# with astroid. If not, see <http://www.gnu.org/licenses/>.
18
"""astroid packaging information"""
19
distname = 'astroid'
20

    
21
modname = 'astroid'
22

    
23
numversion = (1, 4, 4)
24
version = '.'.join([str(num) for num in numversion])
25

    
26
install_requires = ['six', 'lazy_object_proxy', 'wrapt']
27

    
28
license = 'LGPL'
29

    
30
author = 'Logilab'
31
author_email = 'pylint-dev@lists.logilab.org'
32
mailinglist = "mailto://%s" % author_email
33
web = 'http://bitbucket.org/logilab/astroid'
34

    
35
description = "A abstract syntax tree for Python with inference support."
36

    
37
classifiers = ["Topic :: Software Development :: Libraries :: Python Modules",
38
               "Topic :: Software Development :: Quality Assurance",
39
               "Programming Language :: Python",
40
               "Programming Language :: Python :: 2",
41
               "Programming Language :: Python :: 3",
42
              ]