# pylint: disable-msg=W0622 # # This program is free software; you can redistribute it and/or modify it under # the terms of the GNU General Public License as published by the Free Software # Foundation; either version 2 of the License, or (at your option) any later # version. # # This program is distributed in the hope that it will be useful, but WITHOUT # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS # FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details # # You should have received a copy of the GNU General Public License along with # this program; if not, write to the Free Software Foundation, Inc., # 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. """Copyright (c) 2002-2005 LOGILAB S.A. (Paris, FRANCE). http://www.logilab.fr/ -- mailto:contact@logilab.fr """ __revision__ = '$Id: __pkginfo__.py,v 1.15 2005/06/14 10:06:22 syt Exp $' modname = 'pyreverse' numversion = [0, 5, 2] version = '.'.join([str(num) for num in numversion]) license = 'GPL' copyright = '''Copyright (c) 2002-2005 LOGILAB S.A. (Paris, FRANCE). http://www.logilab.fr/ -- mailto:contact@logilab.fr''' short_desc = "set of tools to reverse-engineer Python code" long_desc = """Pyreverse is a set of utilities to reverse engineer Python code. It uses a representation of a Python project in a class hierarchy which can be used to extract any information (such as generating UML diagrams or unit tests, as pyargo and py2tests)""" author = "Sylvain Thenault" author_email = "sylvain.thenault@logilab.fr" web = "http://www.logilab.org/projects/%s" % modname ftp = "ftp://ftp.logilab.org/pub/%s" % modname mailinglist = "http://lists.logilab.org/mailman/listinfo/python-projects" scripts = ('bin/pyargo', 'bin/pyvcg', 'bin/py2tests', 'bin/py2xmi') pyversions = ('2.2', '2.3', '2.4') from os.path import join include_dirs = [join('test', 'data'), join('test', 'generated')]