1# -*- coding: utf-8 -*-
2# pylint: disable=C0413
3#   C0413: Import should be placed at the top of the module
4"""
5A simple plotting library for the wxPython Phoenix project.
6
7"""
8__version__ = "0.0.1"
9__updated__ = "2016-07-05"
10__docformat__ = "restructuredtext en"
11
12# For those who still use ``from package import *`` for some reason
13__all__ = [
14    'PolyLine',
15    'PolySpline',
16    'PolyMarker',
17    'PolyBars',
18    'PolyHistogram',
19    'BoxPlot',
20    'PolyBoxPlot',
21    'PlotGraphics',
22    'PlotCanvas',
23    'PlotPrintout',
24]
25
26# Expose items so that the old API can still be used.
27# Old: import wx.lib.plot as wxplot
28# New: from wx.lib import plot as wxplot
29from .plotcanvas import PlotCanvas
30
31from .polyobjects import PolyPoints
32from .polyobjects import PolyLine
33from .polyobjects import PolySpline
34from .polyobjects import PolyMarker
35from .polyobjects import PolyBars
36from .polyobjects import PolyHistogram
37from .polyobjects import PolyBoxPlot
38from .polyobjects import PlotGraphics
39from .polyobjects import PlotPrintout
40
41from .utils import TempStyle
42from .utils import pendingDeprecation
43from .utils import PlotPendingDeprecation
44
45# For backwards compat.
46BoxPlot = PolyBoxPlot
47