Added TODO and DEVELOPMENT.
[faces-project.git] / faces / charting / __init__.py
blobe9edf3ae060c91083216e6a76a27ebd6c8933861
1 #@+leo-ver=4
2 #@+node:@file charting/__init__.py
3 #@@language python
4 #@<< Copyright >>
5 #@+node:<< Copyright >>
6 ############################################################################
7 # Copyright (C) 2005, 2006, 2007, 2008 by Reithinger GmbH
8 # mreithinger@web.de
10 # This file is part of faces.
12 # faces is free software; you can redistribute it and/or modify
13 # it under the terms of the GNU General Public License as published by
14 # the Free Software Foundation; either version 2 of the License, or
15 # (at your option) any later version.
17 # faces is distributed in the hope that it will be useful,
18 # but WITHOUT ANY WARRANTY; without even the implied warranty of
19 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 # GNU General Public License for more details.
22 # You should have received a copy of the GNU General Public License
23 # along with this program; if not, write to the
24 # Free Software Foundation, Inc.,
25 # 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
26 ############################################################################
28 #@-node:<< Copyright >>
29 #@nl
31 import matplotlib as _mp
33 try:
34 import matplotlib.transforms as _mtrans
35 except NameError:
36 _mp.rcParams['numerix'] = "numpy"
37 import matplotlib.transforms as _mtrans
39 _mp.use("Agg")
41 _is_source = True
42 #@-node:@file charting/__init__.py
43 #@-leo