further adjust some copyright dates
[PyX.git] / pyx / graph / axis / __init__.py
blob7d63c5095af46b6c250d3942c839c039db7da8ff
1 #!/usr/bin/env python
2 # -*- coding: ISO-8859-1 -*-
5 # Copyright (C) 2004-2005 André Wobst <wobsta@users.sourceforge.net>
7 # This file is part of PyX (http://pyx.sourceforge.net/).
9 # PyX is free software; you can redistribute it and/or modify
10 # it under the terms of the GNU General Public License as published by
11 # the Free Software Foundation; either version 2 of the License, or
12 # (at your option) any later version.
14 # PyX is distributed in the hope that it will be useful,
15 # but WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 # GNU General Public License for more details.
19 # You should have received a copy of the GNU General Public License
20 # along with PyX; if not, write to the Free Software
21 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
24 __allmodules__ = ["painter", "parter", "rater", "texter", "tick"]
25 for module in __allmodules__:
26 __import__(module, globals(), locals(), [])
28 import axis
29 __allaxis__ = ["linear", "lin", "logarithmic", "log",
30 "bar", "nestedbar", "split",
31 "sizedlinear", "sizedlin", "autosizedlinear", "autosizedlin",
32 "anchoredaxis", "linkedaxis", "pathaxis"]
33 for importfromaxis in __allaxis__:
34 locals()[importfromaxis] = getattr(axis, importfromaxis)
36 __all__ = __allmodules__ + __allaxis__