forked from matplotlib/matplotlib
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmeson.build
More file actions
50 lines (47 loc) · 1.02 KB
/
meson.build
File metadata and controls
50 lines (47 loc) · 1.02 KB
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
python_sources = [
'__init__.py',
'backend_agg.py',
'backend_cairo.py',
'_backend_gtk.py',
'backend_gtk3.py',
'backend_gtk3agg.py',
'backend_gtk3cairo.py',
'backend_gtk4.py',
'backend_gtk4agg.py',
'backend_gtk4cairo.py',
'backend_macosx.py',
'backend_mixed.py',
'backend_nbagg.py',
'_backend_pdf_ps.py',
'backend_pdf.py',
'backend_pgf.py',
'backend_ps.py',
'backend_qt.py',
'backend_qtagg.py',
'backend_qtcairo.py',
'backend_qt5.py',
'backend_qt5agg.py',
'backend_qt5cairo.py',
'backend_svg.py',
'backend_template.py',
'_backend_tk.py',
'backend_tkagg.py',
'backend_tkcairo.py',
'backend_webagg.py',
'backend_webagg_core.py',
'backend_wx.py',
'backend_wxagg.py',
'backend_wxcairo.py',
'qt_compat.py',
'registry.py',
]
typing_sources = [
# Compiled extension types.
'_backend_agg.pyi',
'_macosx.pyi',
'_tkagg.pyi',
]
py3.install_sources(python_sources, typing_sources,
subdir: 'matplotlib/backends')
subdir('qt_editor')
subdir('web_backend')