-
Notifications
You must be signed in to change notification settings - Fork 99
/
tox.ini
199 lines (199 loc) · 7.29 KB
/
tox.ini
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
[flake8]
per-file-ignores = */api.py:F401
exclude =
# The following list should eventually be empty.
# list can be found with flake8 -q
docs/source/conf.py
chaco/plots/quiverplot.py
chaco/abstract_colormap.py
chaco/plot_containers.py
chaco/grid.py
chaco/base_1d_plot.py
chaco/axis.py
chaco/plots/lineplot.py
chaco/label_axis.py
chaco/image_data.py
chaco/plot.py
chaco/data_range_2d.py
chaco/plots/scatterplot.py
chaco/log_mapper.py
chaco/data_range_1d.py
chaco/base_plot_container.py
chaco/transform_color_mapper.py
chaco/default_colormaps.py
chaco/plotscrollbar.py
chaco/abstract_plot_renderer.py
chaco/ticks.py
chaco/base_candle_plot.py
chaco/plots/polygon_plot.py
chaco/linear_mapper.py
chaco/abstract_overlay.py
chaco/selectable_legend.py
chaco/abstract_plot_data.py
chaco/point_data_source.py
chaco/plots/colormapped_scatterplot.py
chaco/plots/jitterplot.py
chaco/api.py
chaco/data_view.py
chaco/cross_plot_frame.py
chaco/plots/polar_line_renderer.py
chaco/plot_factory.py
chaco/plot_component.py
chaco/data_label.py
chaco/_speedups_fallback.py
chaco/plots/multi_line_plot.py
chaco/label.py
chaco/base_2d_plot.py
chaco/abstract_data_range.py
chaco/abstract_data_source.py
chaco/plots/horizon_plot.py
chaco/array_plot_data.py
chaco/array_data_source.py
chaco/example_support.py
chaco/speedups.py
chaco/base_contour_plot.py
chaco/color_mapper.py
chaco/plots/line_scatterplot_1d.py
chaco/polar_mapper.py
chaco/axis_view.py
chaco/base.py
chaco/plots/color_bar.py
chaco/color_spaces.py
chaco/grid_data_source.py
chaco/plots/filled_line_plot.py
chaco/chaco_traits.py
chaco/plots/barplot.py
chaco/ui/axis_ui.py
chaco/tools/simple_inspector.py
chaco/tools/save_tool.py
chaco/tools/range_selection.py
chaco/tools/zoom_tool.py
chaco/tools/lasso_selection.py
chaco/tools/line_inspector.py
chaco/tools/traits_tool.py
chaco/tools/image_inspector_tool.py
chaco/tools/highlight_tool.py
chaco/tools/better_zoom.py
chaco/tools/cursor_tool.py
chaco/tools/pan_tool.py
chaco/tools/api.py
chaco/tools/drag_zoom.py
chaco/tools/data_label_tool.py
chaco/tools/tracking_zoom.py
chaco/tools/select_tool.py
chaco/tools/line_segment_tool.py
chaco/tools/range_selection_2d.py
chaco/tools/regression_lasso.py
chaco/tools/range_selection_overlay.py
chaco/tools/legend_highlighter.py
chaco/tools/pan_tool2.py
chaco/tools/better_selecting_zoom.py
chaco/tools/legend_tool.py
chaco/tools/toolbars/plot_toolbar.py
chaco/tools/toolbars/toolbar_buttons.py
chaco/overlays/simple_inspector_overlay.py
chaco/overlays/databox.py
chaco/overlays/api.py
chaco/overlays/layers/api.py
chaco/overlays/layers/svg_range_selection_overlay.py
chaco/tests/test_plotcontainer.py
chaco/tests/test_image_plot.py
chaco/tests/test_data_view.py
chaco/tests/test_colormapper.py
chaco/tests/test_datarange_1d.py
chaco/tests/test_array_or_none.py
chaco/tests/test_speedups.py
chaco/tests/test_base_utils.py
chaco/scales/time_scale.py
chaco/scales/formatters.py
chaco/scales/scales.py
chaco/scales/api.py
chaco/scales/safetime.py
chaco/scales/tests/test_time_scale_resolution.py
chaco/scales/tests/test_time_scale.py
chaco/scales/tests/test_scales.py
chaco/scales/tests/test_formatters.py
examples/demo/financial_plot.py
chaco/examples/demo/quiver.py
chaco/examples/demo/scales_test.py
chaco/examples/demo/qt_example.py
chaco/examples/demo/chaco_trait_editor.py
examples/demo/multiaxis_using_Plot.py
chaco/examples/demo/vertical_plot.py
chaco/examples/demo/stacked_axis.py
chaco/examples/demo/simple_line.py
chaco/examples/demo/edit_line.py
chaco/examples/demo/bigdata.py
chaco/examples/demo/simple_polar.py
chaco/examples/demo/range_selection_demo.py
examples/demo/depth.py
chaco/examples/demo/multi_line_plot_demo.py
chaco/examples/demo/coordinate_line_overlay_demo.py
chaco/examples/demo/cursor_tool_demo.py
chaco/examples/demo/toolbar_plot.py
examples/demo/world_map.py
examples/demo/financial_plot_dates.py
chaco/examples/demo/advanced/asynchronous_updates.py
examples/demo/advanced/spec_waterfall.py
chaco/examples/demo/advanced/data_cube.py
chaco/examples/demo/advanced/scalar_image_function_inspector.py
examples/demo/advanced/javascript_hover_tools.py
chaco/examples/demo/advanced/cmap_variable_sized_scatter.py
examples/demo/zoomed_plot/wav_to_numeric.py
examples/demo/zoomed_plot/zoom_overlay.py
examples/demo/zoomed_plot/zoom_plot.py
chaco/examples/demo/financial/correlations.py
chaco/examples/demo/financial/stock_prices.py
chaco/examples/demo/basic/image_inspector.py
chaco/examples/demo/basic/draw_layers.py
chaco/examples/demo/basic/regression.py
chaco/examples/demo/basic/scatter_variable_size.py
chaco/examples/demo/basic/log_plot.py
chaco/examples/demo/basic/scatter_toggle.py
chaco/examples/demo/basic/scatter_1d.py
chaco/examples/demo/basic/cmap_image_plot.py
chaco/examples/demo/basic/scatter_alpha.py
chaco/examples/demo/basic/candle.py
chaco/examples/demo/basic/inset_plot.py
chaco/examples/demo/basic/nans_plot.py
chaco/examples/demo/basic/grid_container_aspect_ratio.py
chaco/examples/demo/basic/contour_plot.py
chaco/examples/demo/basic/image_lasso.py
chaco/examples/demo/basic/scatter_inspector.py
chaco/examples/demo/basic/discrete_cmap_scatter.py
chaco/examples/demo/basic/cmap_image_aspect_ratio.py
chaco/examples/demo/basic/bounded_grids.py
chaco/examples/demo/basic/segment_plot.py
chaco/examples/demo/basic/image_from_file.py
chaco/examples/demo/basic/scatter.py
chaco/examples/demo/basic/contour_cmap_plot.py
chaco/examples/demo/basic/line_plot_hold.py
chaco/examples/demo/basic/scatter_custom_marker.py
chaco/examples/demo/basic/cmap_segment_plot.py
chaco/examples/demo/basic/hittest_tool.py
chaco/examples/demo/basic/horizon_plot.py
chaco/examples/demo/basic/discrete_cmap_image_plot.py
chaco/examples/demo/basic/tabbed_plots.py
chaco/examples/demo/basic/cmap_image_select.py
chaco/examples/demo/basic/zoomable_colorbar.py
chaco/examples/demo/basic/polygon_move.py
chaco/examples/demo/basic/image_plot.py
chaco/examples/demo/basic/grid_container.py
chaco/examples/demo/basic/cmap_scatter.py
chaco/examples/demo/basic/scatter_inspector2.py
chaco/examples/demo/basic/line_plot1.py
chaco/examples/demo/basic/scatter_select.py
chaco/examples/demo/basic/line_drawing.py
chaco/examples/demo/basic/scrollbar.py
examples/demo/canvas/cliptest.py
examples/demo/canvas/transient_plot_overlay.py
examples/demo/canvas/axis_tool.py
examples/demo/canvas/data_source_button.py
examples/demo/canvas/plot_clone_tool.py
examples/demo/canvas/canvas.py
examples/tutorials/tutorial10.py
examples/tutorials/scipy2008/custom_tool_click.py
examples/tutorials/scipy2008/data_chooser.py
examples/tutorials/scipy2008/connected_widgets.py
examples/tutorials/scipy2008/tool_chooser.py
examples/tutorials/scipy2008/custom_tool_screen.py