summaryrefslogtreecommitdiff
path: root/__pkginfo__.py
diff options
context:
space:
mode:
authorsylvain thenault <sylvain.thenault@logilab.fr>2009-03-18 09:50:46 +0100
committersylvain thenault <sylvain.thenault@logilab.fr>2009-03-18 09:50:46 +0100
commitbf442e37fa48ba2897cfb5e5849702b8b812fef2 (patch)
tree203b49593ee1543d060f5bd27174e4282ac95409 /__pkginfo__.py
parentec712fc8f177d51e89310914a20b07ff7868c294 (diff)
downloadastroid-bf442e37fa48ba2897cfb5e5849702b8b812fef2.tar.gz
update description and supported python versions
Diffstat (limited to '__pkginfo__.py')
-rw-r--r--__pkginfo__.py17
1 files changed, 9 insertions, 8 deletions
diff --git a/__pkginfo__.py b/__pkginfo__.py
index e938da8..1826881 100644
--- a/__pkginfo__.py
+++ b/__pkginfo__.py
@@ -1,4 +1,4 @@
-# Copyright (c) 2003-2008 LOGILAB S.A. (Paris, FRANCE).
+# Copyright (c) 2003-2009 LOGILAB S.A. (Paris, FRANCE).
# http://www.logilab.fr/ -- mailto:contact@logilab.fr
#
# This program is free software; you can redistribute it and/or modify it under
@@ -21,10 +21,10 @@ modname = 'astng'
distname = 'logilab-astng'
numversion = (0, 17, 2)
version = '.'.join([str(num) for num in numversion])
-pyversions = ["2.3", "2.4", "2.5"]
+pyversions = ["2.3", "2.4", "2.5", '2.6']
license = 'GPL'
-copyright = '''Copyright (c) 2003-2008 LOGILAB S.A. (Paris, FRANCE).
+copyright = '''Copyright (c) 2003-2009 LOGILAB S.A. (Paris, FRANCE).
http://www.logilab.fr/ -- mailto:contact@logilab.fr'''
author = 'Sylvain Thenault'
@@ -38,11 +38,12 @@ python source code for projects such as pychecker, pyreverse,
pylint... Well, actually the development of this library is essentialy
governed by pylint's needs.
-It extends class defined in the compiler.ast [1] module with some
-additional methods and attributes. Instance attributes are added by a
-builder object, which can either generate extended ast (let's call
-them astng ;) by visiting an existant ast tree or by inspecting living
-object. Methods are added by monkey patching ast classes."""
+It extends class defined in the compiler.ast [1] module (python <= 2.4) or in
+the builtin _ast module (python >= 2.5) with some additional methods and
+attributes. Instance attributes are added by a builder object, which can either
+generate extended ast (let's call them astng ;) by visiting an existant ast tree
+or by inspecting living object. Methods are added by monkey patching ast
+classes."""
web = "http://www.logilab.org/project/%s" % distname