__pkginfo__.py 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. # copyright 2003-2012 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. distname = 'logilab-astng'
  22. modname = 'astng'
  23. subpackage_of = 'logilab'
  24. numversion = (0, 24, 0)
  25. version = '.'.join([str(num) for num in numversion])
  26. install_requires = ['logilab-common >= 0.53.0']
  27. license = 'LGPL'
  28. author = 'Logilab'
  29. author_email = 'python-projects@lists.logilab.org'
  30. mailinglist = "mailto://%s" % author_email
  31. web = "http://www.logilab.org/project/%s" % distname
  32. ftp = "ftp://ftp.logilab.org/pub/%s" % modname
  33. description = "rebuild a new abstract syntax tree from Python's ast"
  34. from os.path import join
  35. include_dirs = ['brain',
  36. join('test', 'regrtest_data'),
  37. join('test', 'data'), join('test', 'data2')]