OLD | NEW |
| (Empty) |
1 # copyright 2003-2011 LOGILAB S.A. (Paris, FRANCE), all rights reserved. | |
2 # contact http://www.logilab.fr/ -- mailto:contact@logilab.fr | |
3 # copyright 2003-2010 Sylvain Thenault, all rights reserved. | |
4 # contact mailto:thenault@gmail.com | |
5 # | |
6 # This file is part of logilab-astng. | |
7 # | |
8 # logilab-astng is free software: you can redistribute it and/or modify it | |
9 # under the terms of the GNU Lesser General Public License as published by the | |
10 # Free Software Foundation, either version 2.1 of the License, or (at your | |
11 # option) any later version. | |
12 # | |
13 # logilab-astng is distributed in the hope that it will be useful, but | |
14 # WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | |
15 # FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License | |
16 # for more details. | |
17 # | |
18 # You should have received a copy of the GNU Lesser General Public License along | |
19 # with logilab-astng. If not, see <http://www.gnu.org/licenses/>. | |
20 """logilab.astng packaging information""" | |
21 | |
22 distname = 'logilab-astng' | |
23 | |
24 modname = 'astng' | |
25 subpackage_of = 'logilab' | |
26 | |
27 numversion = (0, 23, 1) | |
28 version = '.'.join([str(num) for num in numversion]) | |
29 | |
30 install_requires = ['logilab-common >= 0.53.0'] | |
31 | |
32 license = 'LGPL' | |
33 | |
34 author = 'Logilab' | |
35 author_email = 'python-projects@lists.logilab.org' | |
36 mailinglist = "mailto://%s" % author_email | |
37 web = "http://www.logilab.org/project/%s" % distname | |
38 ftp = "ftp://ftp.logilab.org/pub/%s" % modname | |
39 | |
40 description = "rebuild a new abstract syntax tree from Python's ast" | |
41 | |
42 from os.path import join | |
43 include_dirs = [join('test', 'regrtest_data'), | |
44 join('test', 'data'), join('test', 'data2')] | |
OLD | NEW |