lime-stable 2.0.dev1__py3-none-any.whl → 2.0.dev2__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
lime/lime.toml CHANGED
@@ -1,3 +1,3 @@
1
1
  [metadata]
2
2
  name = 'lime-stable'
3
- version = '2.0.0'
3
+ version = "2.0.dev2"
@@ -0,0 +1,131 @@
1
+ [matplotlib] # Figure format
2
+ default."figure.dpi" = 200
3
+ default."figure.figsize" = [4.85, 3]
4
+ default."axes.titlesize" = 9
5
+ default."axes.labelsize" = 9
6
+ default."legend.fontsize" = 7
7
+ default."xtick.labelsize" = 8
8
+ default."ytick.labelsize" = 8
9
+ default."font.size" = 5
10
+
11
+ [matplotlib.size] # Figure elements size
12
+ default."single_width" = '1'
13
+ default."comp_width" = '0.75'
14
+ default."err_width" = '2'
15
+ default."cont_width" = '0.5'
16
+ default."spectrum_width" = '0.75'
17
+ default."textsize_notes" = 4
18
+
19
+ [matplotlib.colors] # Theme format
20
+ "figure.facecolor" = "bg"
21
+ "axes.facecolor" = "bg"
22
+ "axes.edgecolor" = "fg"
23
+ "axes.labelcolor" = "fg"
24
+ "xtick.labelcolor" = "fg"
25
+ "ytick.labelcolor" = "fg"
26
+ 'xtick.color'= "fg"
27
+ 'ytick.color'= "fg"
28
+ "text.color" = "fg"
29
+ "legend.edgecolor" = "inherit"
30
+ "legend.facecolor" = "inherit"
31
+
32
+ [matplotlib.figure.bands] # Individual figure format
33
+ "axes.labelsize" = 8
34
+ "legend.fontsize" = 5
35
+
36
+ [matplotlib.figure.cube_interactive] # Individual figure format
37
+ 'figure.figsize' = [6.85, 3]
38
+ 'axes.titlesize' = 6
39
+ 'legend.fontsize' = 6
40
+ 'axes.labelsize' = 6
41
+ 'xtick.labelsize' = 4
42
+ 'ytick.labelsize' = 4
43
+ "contour.linewidth" = 0.75
44
+ "axes.labelpad" = 1
45
+
46
+ [matplotlib.figure.grid] # Individual figure format
47
+ "axes.titlesize" = 6
48
+ "axes.titlepad" = 1
49
+
50
+ [matplotlib.figure.cube]
51
+ "legend.fontsize" = 5
52
+ "axes.titlesize" = 6
53
+ "axes.labelsize" = 6
54
+ "xtick.labelsize" = 4
55
+ "ytick.labelsize" = 4
56
+
57
+ [bokeh]
58
+ default."width" = 600
59
+ default."height" = 300
60
+ default."tools" = 'fullscreen,pan,wheel_zoom,box_zoom,xzoom_in,yzoom_in,reset,save'
61
+ #default."tools" = 'zoom_in,xzoom_in,yzoom_in,xwheel_zoom,ywheel_zoom,reset'
62
+
63
+
64
+ [bokeh.size] # Figure elements size
65
+ default."single_width" = '1'
66
+ default."comp_width" = '0.75'
67
+ default."err_width" = '2'
68
+ default."cont_width" = '0.5'
69
+ default."spectrum_width" = '0.75'
70
+ default."textsize_notes" = 4
71
+
72
+ [bokeh.colors]
73
+ background_fill_color = "bg"
74
+ border_fill_color = "bg"
75
+
76
+ outline_line_color = "fg"
77
+ xaxis.axis_label_text_color = "fg"
78
+ yaxis.axis_label_text_color = "fg"
79
+ xaxis.major_label_text_color = "fg"
80
+ yaxis.major_label_text_color = "fg"
81
+
82
+ xaxis.axis_line_color = "fg"
83
+ yaxis.axis_line_color = "fg"
84
+ xaxis.major_tick_line_color = "fg"
85
+ yaxis.major_tick_line_color = "fg"
86
+ xaxis.minor_tick_line_color = "fg"
87
+ yaxis.minor_tick_line_color = "fg"
88
+
89
+ title.text_color = "fg"
90
+ xgrid.grid_line_color = "None"
91
+ ygrid.grid_line_color = "None"
92
+
93
+ [colors.default] # Default theme
94
+ bg = '#FFFFFF'
95
+ fg = '#000000'
96
+ cont_band = '#8c564b'
97
+ line_band = '#b5bd61'
98
+ color_cycle = ['#279e68', '#d62728', '#aa40fc', '#8c564b', '#e377c2', '#7f7f7f',
99
+ '#b5bd61', '#17becf', '#1f77b4', '#ff7f0e']
100
+ match_line = '#b5bd61'
101
+ peak = '#aa40fc'
102
+ trough = '#7f7f7f'
103
+ profile = '#1f77b4'
104
+ cont = '#ff7f0e'
105
+ error = '#FF0000'
106
+ mask_map = 'viridis'
107
+ comps_map = 'Dark2'
108
+ mask_marker = '#FF0000'
109
+ inspection_positive = '#FFFFFF'
110
+ inspection_negative = '#ff796c' # 'xkcd:salmon'
111
+ fade_fg = "#FFE5B4"
112
+
113
+ [colors.dark] # Dark theme
114
+ bg = "#2B2B2B"
115
+ fg = "#CCCCCC"
116
+ cont_band = '#e7298a'
117
+ line_band = '#8fff9f'
118
+ color_cycle = ['#66c2a5', '#fc8d62', '#e68ac3', '#a6d854', '#ffd92f', '#e5c494',
119
+ '#8dcbe2', '#e7298a', '#332288', '#88ccee']
120
+ match_line = '#8fff9f'
121
+ peak = '#aa40fc'
122
+ trough = '#7f7f7f'
123
+ profile = '#ddcc77'
124
+ cont = "#CCCCCC"
125
+ error = '#FF0000'
126
+ mask_map = 'viridis'
127
+ comps_map = 'PuRd'
128
+ mask_marker = '#FF0000'
129
+ inspection_positive = "#2B2B2B"
130
+ inspection_negative = '#840000'
131
+ fade_fg = "#73879B"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: lime-stable
3
- Version: 2.0.dev1
3
+ Version: 2.0.dev2
4
4
  Summary: Line measuring algorithm for astronomical spectra
5
5
  Author-email: Vital Fernández <vgf@umich.edu>
6
6
  License-Expression: GPL-3.0-or-later
@@ -1,7 +1,7 @@
1
1
  lime/__init__.py,sha256=XSdB2p1Pa7xRN2kUGBkjQ1DLBlf8PEdpRP6e7fmnA-I,1272
2
2
  lime/changelog.txt,sha256=dtgIyH9Nuwtz8zyN-A7nrykSu5If-7iPkr1WTjjeApU,9144
3
3
  lime/io.py,sha256=sC6og4gJMwjoh3efuob-cSwfJP6bV3Lb6q_l2c9h-Oo,32485
4
- lime/lime.toml,sha256=ikKjmip5_r45EgsKgTHk0YoyT08ahzfoxDXO8v3X7ac,49
4
+ lime/lime.toml,sha256=jUXcBnstCXYzBPhRi5vNW4I21UaJy6wqUKgYJ31pm1s,52
5
5
  lime/observations.py,sha256=w8C-gVYs11CWetx3VasKR0QADV0pddmXMBVa8n13Xfs,64550
6
6
  lime/tools.py,sha256=WbCHcRipTDmYtVGShziL060tmq3PhXCHUzKrKf1xwQA,33922
7
7
  lime/transitions.py,sha256=4fM_GgJBhLyzDhZDNk_S5eVI4lk5dDOCSpU7w7OgJX4,43467
@@ -19,6 +19,7 @@ lime/plotting/bokeh_plots.py,sha256=D3nESI_q88N-1sCKZSG6Yoj9z8SlbyIObCa6mZpRgKw,
19
19
  lime/plotting/format.py,sha256=bawpN8G_zHS8ujRapdaBvaYzjBgESssysL70MV8s_9M,7211
20
20
  lime/plotting/plots.py,sha256=bKUitnrdupwZdAM-MDTJ4UoOerauirDt7y6HuVlg5Zc,86662
21
21
  lime/plotting/plots_interactive.py,sha256=ppEn7HI1kRkwfXAt1ovmYvkYeNCX7xDUP1kO4Ko9tj8,71955
22
+ lime/plotting/theme_lime.toml,sha256=uiL5G86oAGTtU-LywhNYx1SplssDQfOpNbovoUG1zfk,3354
22
23
  lime/plotting/utils.py,sha256=LzSDvEb1IrPGmr2nlrq_8jl34al_0yiLSz3t4y6-Kdo,2081
23
24
  lime/resources/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
24
25
  lime/resources/lines_database_formatting.py,sha256=vhdanmwQ9ih0eERRAOCUeIQoc-VmTdHv7GseWxDavoA,4357
@@ -27,8 +28,8 @@ lime/resources/logo.py,sha256=buuJuwCjw0JFFtqvvIBpjb-LCuFgBwRFqnVOqCmSam8,3296
27
28
  lime/resources/types_params.txt,sha256=HgK-rr_cHnjNR3oLJomdYt6UvKwBn-FMWt40MkCR0wM,10111
28
29
  lime/retrieve/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
29
30
  lime/retrieve/peaks.py,sha256=zERD2-GO-AtNrx8xwGqNbml0pB0nTCH4Oro-9fr69GU,8713
30
- lime_stable-2.0.dev1.dist-info/licenses/LICENSE.rst,sha256=B_kw459IXvKujLR27bhVUwXmTq9AM72DdCA1xGgBMKI,35608
31
- lime_stable-2.0.dev1.dist-info/METADATA,sha256=9af0TMUA-ug-oDrBWGNFW1QLB0xJC3s7gEq7n_0lAww,3948
32
- lime_stable-2.0.dev1.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
33
- lime_stable-2.0.dev1.dist-info/top_level.txt,sha256=F6pWR5Cgjf9EkXNBZlUSKFKcPG8vPzM08QwYFfwpsZc,5
34
- lime_stable-2.0.dev1.dist-info/RECORD,,
31
+ lime_stable-2.0.dev2.dist-info/licenses/LICENSE.rst,sha256=B_kw459IXvKujLR27bhVUwXmTq9AM72DdCA1xGgBMKI,35608
32
+ lime_stable-2.0.dev2.dist-info/METADATA,sha256=QdOLoY-i_tF4kzEYDrqCLE1Bi4I2PNjTCmnVajEq1nA,3948
33
+ lime_stable-2.0.dev2.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
34
+ lime_stable-2.0.dev2.dist-info/top_level.txt,sha256=F6pWR5Cgjf9EkXNBZlUSKFKcPG8vPzM08QwYFfwpsZc,5
35
+ lime_stable-2.0.dev2.dist-info/RECORD,,