py2ls 0.2.4.9.7__py3-none-any.whl → 0.2.4.9.8__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.
- py2ls/data/styles/stylelib/.DS_Store +0 -0
- py2ls/data/styles/stylelib/grid.mplstyle +15 -0
- py2ls/data/styles/stylelib/high-contrast.mplstyle +6 -0
- py2ls/data/styles/stylelib/high-vis.mplstyle +4 -0
- py2ls/data/styles/stylelib/ieee.mplstyle +15 -0
- py2ls/data/styles/stylelib/light.mplstyl +6 -0
- py2ls/data/styles/stylelib/muted.mplstyle +6 -0
- py2ls/data/styles/stylelib/nature-reviews-latex.mplstyle +616 -0
- py2ls/data/styles/stylelib/nature-reviews.mplstyle +616 -0
- py2ls/data/styles/stylelib/nature.mplstyle +31 -0
- py2ls/data/styles/stylelib/no-latex.mplstyle +10 -0
- py2ls/data/styles/stylelib/notebook.mplstyle +36 -0
- py2ls/data/styles/stylelib/paper.mplstyle +232 -0
- py2ls/data/styles/stylelib/retro.mplstyle +4 -0
- py2ls/data/styles/stylelib/sans.mplstyle +10 -0
- py2ls/data/styles/stylelib/scatter.mplstyle +7 -0
- py2ls/data/styles/stylelib/science.mplstyle +48 -0
- py2ls/data/styles/stylelib/std-colors.mplstyle +4 -0
- py2ls/data/styles/stylelib/vibrant.mplstyle +6 -0
- {py2ls-0.2.4.9.7.dist-info → py2ls-0.2.4.9.8.dist-info}/METADATA +3 -3
- {py2ls-0.2.4.9.7.dist-info → py2ls-0.2.4.9.8.dist-info}/RECORD +22 -3
- {py2ls-0.2.4.9.7.dist-info → py2ls-0.2.4.9.8.dist-info}/WHEEL +0 -0
| @@ -0,0 +1,36 @@ | |
| 1 | 
            +
            # Matplotlib style for Jupyter notebooks
         | 
| 2 | 
            +
             | 
| 3 | 
            +
            # Set default figure size
         | 
| 4 | 
            +
            figure.figsize : 8, 6
         | 
| 5 | 
            +
             | 
| 6 | 
            +
            # Set x axis
         | 
| 7 | 
            +
            xtick.major.size : 6
         | 
| 8 | 
            +
            xtick.major.width : 1
         | 
| 9 | 
            +
            xtick.minor.size : 3
         | 
| 10 | 
            +
            xtick.minor.width : 1
         | 
| 11 | 
            +
             | 
| 12 | 
            +
            # Set y axis
         | 
| 13 | 
            +
            ytick.major.size : 6
         | 
| 14 | 
            +
            ytick.major.width : 1
         | 
| 15 | 
            +
            ytick.minor.size : 3
         | 
| 16 | 
            +
            ytick.minor.width : 1
         | 
| 17 | 
            +
             | 
| 18 | 
            +
            # Fontsizes
         | 
| 19 | 
            +
            xtick.labelsize : 16
         | 
| 20 | 
            +
            ytick.labelsize : 16
         | 
| 21 | 
            +
            legend.fontsize : 16
         | 
| 22 | 
            +
            legend.title_fontsize : 16
         | 
| 23 | 
            +
            axes.titlesize : 16
         | 
| 24 | 
            +
            axes.labelsize : 16
         | 
| 25 | 
            +
             | 
| 26 | 
            +
            # Set line widths
         | 
| 27 | 
            +
            axes.linewidth : 1
         | 
| 28 | 
            +
            grid.linewidth : 1
         | 
| 29 | 
            +
            lines.linewidth : 2.
         | 
| 30 | 
            +
             | 
| 31 | 
            +
            # Use sans-serif fonts
         | 
| 32 | 
            +
            font.family : sans-serif
         | 
| 33 | 
            +
            mathtext.fontset : dejavusans
         | 
| 34 | 
            +
             | 
| 35 | 
            +
            # Use LaTeX for math formatting
         | 
| 36 | 
            +
            text.usetex : False
         | 
| @@ -0,0 +1,232 @@ | |
| 1 | 
            +
            axes.prop_cycle:cycler('color', ['474747', 'FF2C00', '0C5DA5', '845B97', '58BBCC', 'FF9500', 'D57DBE'])
         | 
| 2 | 
            +
            _internal.classic_mode: False
         | 
| 3 | 
            +
            agg.path.chunksize: 0
         | 
| 4 | 
            +
            axes.axisbelow: True
         | 
| 5 | 
            +
            axes.edgecolor: k
         | 
| 6 | 
            +
            axes.facecolor: white
         | 
| 7 | 
            +
            axes.formatter.min_exponent: 0
         | 
| 8 | 
            +
            axes.formatter.offset_threshold: 4
         | 
| 9 | 
            +
            axes.formatter.use_locale: False
         | 
| 10 | 
            +
            axes.formatter.use_mathtext: False
         | 
| 11 | 
            +
            axes.formatter.useoffset: True
         | 
| 12 | 
            +
            axes.grid: False
         | 
| 13 | 
            +
            axes.grid.axis: both
         | 
| 14 | 
            +
            axes.grid.which: major
         | 
| 15 | 
            +
            axes.labelcolor: k
         | 
| 16 | 
            +
            axes.labelpad: 4.0
         | 
| 17 | 
            +
            axes.labelsize: 11.0
         | 
| 18 | 
            +
            axes.labelweight: normal
         | 
| 19 | 
            +
            axes.linewidth: 0.8
         | 
| 20 | 
            +
            axes.spines.bottom: True
         | 
| 21 | 
            +
            axes.spines.left: True
         | 
| 22 | 
            +
            axes.spines.right: False
         | 
| 23 | 
            +
            axes.spines.top: False
         | 
| 24 | 
            +
            axes.titlecolor: k
         | 
| 25 | 
            +
            axes.titlelocation: center
         | 
| 26 | 
            +
            axes.titlepad: 6.0
         | 
| 27 | 
            +
            axes.titlesize: 11
         | 
| 28 | 
            +
            axes.titleweight: normal
         | 
| 29 | 
            +
            axes.titley: None
         | 
| 30 | 
            +
            axes.unicode_minus: False
         | 
| 31 | 
            +
            axes.xmargin: 0.05
         | 
| 32 | 
            +
            axes.ymargin: 0.05
         | 
| 33 | 
            +
            axes.zmargin: 0.05
         | 
| 34 | 
            +
            axes3d.grid: True
         | 
| 35 | 
            +
            boxplot.bootstrap: None
         | 
| 36 | 
            +
            boxplot.boxprops.color: black
         | 
| 37 | 
            +
            boxplot.boxprops.linestyle: -
         | 
| 38 | 
            +
            boxplot.boxprops.linewidth: 1.0
         | 
| 39 | 
            +
            boxplot.capprops.color: black
         | 
| 40 | 
            +
            boxplot.capprops.linestyle: -
         | 
| 41 | 
            +
            boxplot.capprops.linewidth: 1.0
         | 
| 42 | 
            +
            boxplot.flierprops.color: black
         | 
| 43 | 
            +
            boxplot.flierprops.linestyle: none
         | 
| 44 | 
            +
            boxplot.flierprops.linewidth: 1.0
         | 
| 45 | 
            +
            boxplot.flierprops.marker: o
         | 
| 46 | 
            +
            boxplot.flierprops.markeredgecolor: black
         | 
| 47 | 
            +
            boxplot.flierprops.markeredgewidth: 1.0
         | 
| 48 | 
            +
            boxplot.flierprops.markerfacecolor: none
         | 
| 49 | 
            +
            boxplot.flierprops.markersize: 6.0
         | 
| 50 | 
            +
            boxplot.meanline: False
         | 
| 51 | 
            +
            boxplot.meanprops.color: C2
         | 
| 52 | 
            +
            boxplot.meanprops.linestyle: --
         | 
| 53 | 
            +
            boxplot.meanprops.linewidth: 1.0
         | 
| 54 | 
            +
            boxplot.meanprops.marker: ^
         | 
| 55 | 
            +
            boxplot.meanprops.markeredgecolor: C2
         | 
| 56 | 
            +
            boxplot.meanprops.markerfacecolor: C2
         | 
| 57 | 
            +
            boxplot.meanprops.markersize: 6.0
         | 
| 58 | 
            +
            boxplot.medianprops.color: C1
         | 
| 59 | 
            +
            boxplot.medianprops.linestyle: -
         | 
| 60 | 
            +
            boxplot.medianprops.linewidth: 1.0
         | 
| 61 | 
            +
            boxplot.notch: False
         | 
| 62 | 
            +
            boxplot.patchartist: False
         | 
| 63 | 
            +
            boxplot.showbox: True
         | 
| 64 | 
            +
            boxplot.showcaps: True
         | 
| 65 | 
            +
            boxplot.showfliers: True
         | 
| 66 | 
            +
            boxplot.showmeans: False
         | 
| 67 | 
            +
            boxplot.vertical: True
         | 
| 68 | 
            +
            boxplot.whiskerprops.color: black
         | 
| 69 | 
            +
            boxplot.whiskerprops.linestyle: -
         | 
| 70 | 
            +
            boxplot.whiskerprops.linewidth: 1.0
         | 
| 71 | 
            +
            boxplot.whiskers: 1.5
         | 
| 72 | 
            +
            contour.algorithm: mpl2014
         | 
| 73 | 
            +
            contour.corner_mask: True
         | 
| 74 | 
            +
            contour.linewidth: None
         | 
| 75 | 
            +
            contour.negative_linestyle: dashed
         | 
| 76 | 
            +
            date.autoformatter.day: %Y-%m-%d
         | 
| 77 | 
            +
            date.autoformatter.hour: %m-%d %H
         | 
| 78 | 
            +
            date.autoformatter.microsecond: %M:%S.%f
         | 
| 79 | 
            +
            date.autoformatter.minute: %d %H:%M
         | 
| 80 | 
            +
            date.autoformatter.month: %Y-%m
         | 
| 81 | 
            +
            date.autoformatter.second: %H:%M:%S
         | 
| 82 | 
            +
            date.autoformatter.year: %Y
         | 
| 83 | 
            +
            date.converter: auto
         | 
| 84 | 
            +
            errorbar.capsize: 0.0
         | 
| 85 | 
            +
            figure.autolayout: True
         | 
| 86 | 
            +
            figure.constrained_layout.h_pad: 0.04167
         | 
| 87 | 
            +
            figure.constrained_layout.hspace: 0.02
         | 
| 88 | 
            +
            figure.constrained_layout.use: False
         | 
| 89 | 
            +
            figure.constrained_layout.w_pad: 0.04167
         | 
| 90 | 
            +
            figure.constrained_layout.wspace: 0.02
         | 
| 91 | 
            +
            figure.dpi: 100.0
         | 
| 92 | 
            +
            figure.edgecolor: white
         | 
| 93 | 
            +
            figure.facecolor: white
         | 
| 94 | 
            +
            figure.figsize: 6.0, 4.0
         | 
| 95 | 
            +
            figure.labelsize: large
         | 
| 96 | 
            +
            figure.labelweight: normal
         | 
| 97 | 
            +
            figure.subplot.bottom: 0.11
         | 
| 98 | 
            +
            figure.subplot.hspace: 0.2
         | 
| 99 | 
            +
            figure.subplot.left: 0.125
         | 
| 100 | 
            +
            figure.subplot.right: 0.9
         | 
| 101 | 
            +
            figure.subplot.top: 0.88
         | 
| 102 | 
            +
            figure.subplot.wspace: 0.2
         | 
| 103 | 
            +
            figure.titlesize: 11.0
         | 
| 104 | 
            +
            figure.titleweight: normal
         | 
| 105 | 
            +
            font.family: sans-serif
         | 
| 106 | 
            +
            font.sans-serif: Arial
         | 
| 107 | 
            +
            font.serif: Arial
         | 
| 108 | 
            +
            font.size: 11.0
         | 
| 109 | 
            +
            font.stretch: normal
         | 
| 110 | 
            +
            font.style: normal
         | 
| 111 | 
            +
            font.variant: normal
         | 
| 112 | 
            +
            font.weight: normal
         | 
| 113 | 
            +
            grid.alpha: 1.0
         | 
| 114 | 
            +
            grid.color: .65
         | 
| 115 | 
            +
            grid.linestyle: :
         | 
| 116 | 
            +
            grid.linewidth: 0.75
         | 
| 117 | 
            +
            hatch.color: black
         | 
| 118 | 
            +
            hatch.linewidth: 1.0
         | 
| 119 | 
            +
            hist.bins: 10
         | 
| 120 | 
            +
            image.aspect: equal
         | 
| 121 | 
            +
            image.cmap: Greys
         | 
| 122 | 
            +
            image.composite_image: True
         | 
| 123 | 
            +
            image.interpolation: antialiased
         | 
| 124 | 
            +
            image.lut: 256
         | 
| 125 | 
            +
            image.origin: upper
         | 
| 126 | 
            +
            image.resample: True
         | 
| 127 | 
            +
            legend.borderaxespad: 0.5
         | 
| 128 | 
            +
            legend.borderpad: 0.4
         | 
| 129 | 
            +
            legend.columnspacing: 2.0
         | 
| 130 | 
            +
            legend.edgecolor: none
         | 
| 131 | 
            +
            legend.facecolor: inherit
         | 
| 132 | 
            +
            legend.fancybox: True
         | 
| 133 | 
            +
            legend.fontsize: 10.0
         | 
| 134 | 
            +
            legend.framealpha: 0.8
         | 
| 135 | 
            +
            legend.frameon: False
         | 
| 136 | 
            +
            legend.handleheight: 0.7
         | 
| 137 | 
            +
            legend.handlelength: 2.0
         | 
| 138 | 
            +
            legend.handletextpad: 0.8
         | 
| 139 | 
            +
            legend.labelcolor: k
         | 
| 140 | 
            +
            legend.labelspacing: 0.5
         | 
| 141 | 
            +
            legend.loc: best
         | 
| 142 | 
            +
            legend.markerscale: 1.0
         | 
| 143 | 
            +
            legend.numpoints: 1
         | 
| 144 | 
            +
            legend.scatterpoints: 1
         | 
| 145 | 
            +
            legend.shadow: False
         | 
| 146 | 
            +
            legend.title_fontsize: 10.0
         | 
| 147 | 
            +
            lines.antialiased: True
         | 
| 148 | 
            +
            lines.color: C0
         | 
| 149 | 
            +
            lines.dash_capstyle: round
         | 
| 150 | 
            +
            lines.dash_joinstyle: round
         | 
| 151 | 
            +
            lines.dashdot_pattern: 6.4, 1.6, 1.0, 1.6
         | 
| 152 | 
            +
            lines.dashed_pattern: 3.7, 1.6
         | 
| 153 | 
            +
            lines.dotted_pattern: 1.0, 1.65
         | 
| 154 | 
            +
            lines.linestyle: -
         | 
| 155 | 
            +
            lines.linewidth: 0.75
         | 
| 156 | 
            +
            lines.marker: None
         | 
| 157 | 
            +
            lines.markeredgecolor: auto
         | 
| 158 | 
            +
            lines.markeredgewidth: 1.0
         | 
| 159 | 
            +
            lines.markerfacecolor: auto
         | 
| 160 | 
            +
            lines.markersize: 6.0
         | 
| 161 | 
            +
            lines.scale_dashes: True
         | 
| 162 | 
            +
            lines.solid_capstyle: round
         | 
| 163 | 
            +
            lines.solid_joinstyle: round
         | 
| 164 | 
            +
            markers.fillstyle: full
         | 
| 165 | 
            +
            mathtext.bf: sans:bold
         | 
| 166 | 
            +
            mathtext.cal: cursive
         | 
| 167 | 
            +
            mathtext.default: it
         | 
| 168 | 
            +
            mathtext.fallback: cm
         | 
| 169 | 
            +
            mathtext.fontset: dejavusans
         | 
| 170 | 
            +
            mathtext.it: sans:italic
         | 
| 171 | 
            +
            mathtext.rm: sans
         | 
| 172 | 
            +
            mathtext.sf: sans
         | 
| 173 | 
            +
            mathtext.tt: monospace
         | 
| 174 | 
            +
            pdf.compression: 6
         | 
| 175 | 
            +
            pdf.fonttype: 42
         | 
| 176 | 
            +
            savefig.edgecolor: auto
         | 
| 177 | 
            +
            savefig.facecolor: auto
         | 
| 178 | 
            +
            savefig.transparent: False
         | 
| 179 | 
            +
            scatter.edgecolors: face
         | 
| 180 | 
            +
            scatter.marker: o
         | 
| 181 | 
            +
            svg.fonttype: none
         | 
| 182 | 
            +
            svg.hashsalt: None
         | 
| 183 | 
            +
            svg.image_inline: True
         | 
| 184 | 
            +
            text.antialiased: True
         | 
| 185 | 
            +
            text.color: k
         | 
| 186 | 
            +
            text.hinting: force_autohint
         | 
| 187 | 
            +
            text.hinting_factor: 8
         | 
| 188 | 
            +
            text.kerning_factor: 0
         | 
| 189 | 
            +
            text.parse_math: True
         | 
| 190 | 
            +
            text.usetex: False
         | 
| 191 | 
            +
            xaxis.labellocation: center
         | 
| 192 | 
            +
            xtick.alignment: center
         | 
| 193 | 
            +
            xtick.bottom: True
         | 
| 194 | 
            +
            xtick.color: k
         | 
| 195 | 
            +
            xtick.direction: out
         | 
| 196 | 
            +
            xtick.labelbottom: True
         | 
| 197 | 
            +
            xtick.labelcolor: inherit
         | 
| 198 | 
            +
            xtick.labelsize: 11.0
         | 
| 199 | 
            +
            xtick.labeltop: False
         | 
| 200 | 
            +
            xtick.major.bottom: True
         | 
| 201 | 
            +
            xtick.major.pad: 3.5
         | 
| 202 | 
            +
            xtick.major.size: 2.0
         | 
| 203 | 
            +
            xtick.major.top: True
         | 
| 204 | 
            +
            xtick.major.width: 0.8
         | 
| 205 | 
            +
            xtick.minor.bottom: True
         | 
| 206 | 
            +
            xtick.minor.pad: 3.4
         | 
| 207 | 
            +
            xtick.minor.size: 2.0
         | 
| 208 | 
            +
            xtick.minor.top: True
         | 
| 209 | 
            +
            xtick.minor.visible: False
         | 
| 210 | 
            +
            xtick.minor.width: 0.6
         | 
| 211 | 
            +
            xtick.top: False
         | 
| 212 | 
            +
            yaxis.labellocation: center
         | 
| 213 | 
            +
            ytick.alignment: center_baseline
         | 
| 214 | 
            +
            ytick.color: k
         | 
| 215 | 
            +
            ytick.direction: out
         | 
| 216 | 
            +
            ytick.labelcolor: inherit
         | 
| 217 | 
            +
            ytick.labelleft: True
         | 
| 218 | 
            +
            ytick.labelright: False
         | 
| 219 | 
            +
            ytick.labelsize: 11.0
         | 
| 220 | 
            +
            ytick.left: True
         | 
| 221 | 
            +
            ytick.major.left: True
         | 
| 222 | 
            +
            ytick.major.pad: 3.5
         | 
| 223 | 
            +
            ytick.major.right: True
         | 
| 224 | 
            +
            ytick.major.size: 3.5
         | 
| 225 | 
            +
            ytick.major.width: 0.8
         | 
| 226 | 
            +
            ytick.minor.left: True
         | 
| 227 | 
            +
            ytick.minor.pad: 3.4
         | 
| 228 | 
            +
            ytick.minor.right: True
         | 
| 229 | 
            +
            ytick.minor.size: 0.0
         | 
| 230 | 
            +
            ytick.minor.visible: False
         | 
| 231 | 
            +
            ytick.minor.width: 0.6
         | 
| 232 | 
            +
            ytick.right: False
         | 
| @@ -0,0 +1,10 @@ | |
| 1 | 
            +
            # Sans-serif
         | 
| 2 | 
            +
            font.family : sans-serif
         | 
| 3 | 
            +
             | 
| 4 | 
            +
            # Latex with sans-serif fonts
         | 
| 5 | 
            +
            mathtext.fontset : dejavusans
         | 
| 6 | 
            +
             | 
| 7 | 
            +
            # In general, we need to be careful with the preamble. A common font for
         | 
| 8 | 
            +
            # sans serif LaTeX is cmbright. However, it does not support bold fontweights
         | 
| 9 | 
            +
            # so we use sfmath instead. 
         | 
| 10 | 
            +
            text.latex.preamble : \usepackage{amsmath} \usepackage{amssymb} \usepackage{sfmath}
         | 
| @@ -0,0 +1,7 @@ | |
| 1 | 
            +
            # Matplotlib style for scatter plots
         | 
| 2 | 
            +
             | 
| 3 | 
            +
            # Set markers (style, color, no lines)
         | 
| 4 | 
            +
            axes.prop_cycle : (cycler('marker', ['o', 's', '^', 'v', '<', '>', 'd']) + cycler('color', ['0C5DA5', '00B945', 'FF9500', 'FF2C00', '845B97', '474747', '9e9e9e']) + cycler('ls', [' ', ' ', ' ', ' ', ' ', ' ', ' ']))
         | 
| 5 | 
            +
             | 
| 6 | 
            +
            # Set marker size
         | 
| 7 | 
            +
            lines.markersize : 3
         | 
| @@ -0,0 +1,48 @@ | |
| 1 | 
            +
            # Matplotlib style for scientific plotting
         | 
| 2 | 
            +
            # This is the base style for "SciencePlots"
         | 
| 3 | 
            +
            # see: https://github.com/garrettj403/SciencePlots
         | 
| 4 | 
            +
             | 
| 5 | 
            +
            # Set color cycle: blue, green, yellow, red, violet, gray
         | 
| 6 | 
            +
            axes.prop_cycle : cycler('color', ['0C5DA5', '00B945', 'FF9500', 'FF2C00', '845B97', '474747', '9e9e9e'])
         | 
| 7 | 
            +
             | 
| 8 | 
            +
            # Set default figure size
         | 
| 9 | 
            +
            figure.figsize : 3.5, 2.625
         | 
| 10 | 
            +
             | 
| 11 | 
            +
            # Set x axis
         | 
| 12 | 
            +
            xtick.direction : in
         | 
| 13 | 
            +
            xtick.major.size : 3
         | 
| 14 | 
            +
            xtick.major.width : 0.5
         | 
| 15 | 
            +
            xtick.minor.size : 1.5
         | 
| 16 | 
            +
            xtick.minor.width : 0.5
         | 
| 17 | 
            +
            xtick.minor.visible : True
         | 
| 18 | 
            +
            xtick.top : True
         | 
| 19 | 
            +
             | 
| 20 | 
            +
            # Set y axis
         | 
| 21 | 
            +
            ytick.direction : in
         | 
| 22 | 
            +
            ytick.major.size : 3
         | 
| 23 | 
            +
            ytick.major.width : 0.5
         | 
| 24 | 
            +
            ytick.minor.size : 1.5
         | 
| 25 | 
            +
            ytick.minor.width : 0.5
         | 
| 26 | 
            +
            ytick.minor.visible : True
         | 
| 27 | 
            +
            ytick.right : True
         | 
| 28 | 
            +
             | 
| 29 | 
            +
            # Set line widths
         | 
| 30 | 
            +
            axes.linewidth : 0.5
         | 
| 31 | 
            +
            grid.linewidth : 0.5
         | 
| 32 | 
            +
            lines.linewidth : 1.
         | 
| 33 | 
            +
             | 
| 34 | 
            +
            # Remove legend frame
         | 
| 35 | 
            +
            legend.frameon : False
         | 
| 36 | 
            +
             | 
| 37 | 
            +
            # Always save as 'tight'
         | 
| 38 | 
            +
            savefig.bbox : tight
         | 
| 39 | 
            +
            savefig.pad_inches : 0.05
         | 
| 40 | 
            +
             | 
| 41 | 
            +
            # Use serif fonts
         | 
| 42 | 
            +
            # font.serif : Times
         | 
| 43 | 
            +
            font.family : serif
         | 
| 44 | 
            +
            mathtext.fontset : dejavuserif
         | 
| 45 | 
            +
             | 
| 46 | 
            +
            # Use LaTeX for math formatting
         | 
| 47 | 
            +
            text.usetex : True
         | 
| 48 | 
            +
            text.latex.preamble : \usepackage{amsmath} \usepackage{amssymb}
         | 
| @@ -1,6 +1,6 @@ | |
| 1 1 | 
             
            Metadata-Version: 2.1
         | 
| 2 2 | 
             
            Name: py2ls
         | 
| 3 | 
            -
            Version: 0.2.4.9. | 
| 3 | 
            +
            Version: 0.2.4.9.8
         | 
| 4 4 | 
             
            Summary: py(thon)2(too)ls
         | 
| 5 5 | 
             
            Author: Jianfeng
         | 
| 6 6 | 
             
            Author-email: Jianfeng.Liu0413@gmail.com
         | 
| @@ -133,7 +133,7 @@ Requires-Dist: nltk (>=3.8.1) | |
| 133 133 | 
             
            Requires-Dist: numba (>=0.59.1)
         | 
| 134 134 | 
             
            Requires-Dist: numcodecs (>=0.13.0)
         | 
| 135 135 | 
             
            Requires-Dist: numerizer (>=0.2.3)
         | 
| 136 | 
            -
            Requires-Dist: numpy (>=1. | 
| 136 | 
            +
            Requires-Dist: numpy (>=1.22.1)
         | 
| 137 137 | 
             
            Requires-Dist: onnxruntime (>=1.18.1)
         | 
| 138 138 | 
             
            Requires-Dist: opencv-contrib-python (>=4.10.0.84)
         | 
| 139 139 | 
             
            Requires-Dist: opencv-python (>=4.10.0.84)
         | 
| @@ -164,7 +164,7 @@ Requires-Dist: prompt_toolkit (>=3.0.47) | |
| 164 164 | 
             
            Requires-Dist: protobuf (>=5.27.2)
         | 
| 165 165 | 
             
            Requires-Dist: psutil (>=5.9.8)
         | 
| 166 166 | 
             
            Requires-Dist: ptyprocess (>=0.7.0)
         | 
| 167 | 
            -
            Requires-Dist: pure_eval (>=0.2. | 
| 167 | 
            +
            Requires-Dist: pure_eval (>=0.2.1)
         | 
| 168 168 | 
             
            Requires-Dist: pycodestyle (>=2.12.0)
         | 
| 169 169 | 
             
            Requires-Dist: pycparser (>=2.22)
         | 
| 170 170 | 
             
            Requires-Dist: pyflakes (>=3.2.0)
         | 
| @@ -205,6 +205,25 @@ py2ls/data/styles/style6.json,sha256=tu-MYOT9x5Rorc-2IK6sy-J-frmz0RNdm65XAsDQKX4 | |
| 205 205 | 
             
            py2ls/data/styles/style7.json,sha256=StdUFwIVrS7T_6CDrADHMorzc0WZFWBM7IyYdO1TPHg,4447
         | 
| 206 206 | 
             
            py2ls/data/styles/style8.json,sha256=8XUgkZtew8ebvjbAHlDHCSWUqNra3ktDvMCO4vNh-CM,4456
         | 
| 207 207 | 
             
            py2ls/data/styles/style9.json,sha256=PLxvntbH_kfzZlnCTtCEAUVBGi5m6Lngb9C01rArQog,4769
         | 
| 208 | 
            +
            py2ls/data/styles/stylelib/.DS_Store,sha256=1lFlJ5EFymdzGAUAaI30vcaaLHt3F1LwpG7xILf9jsM,6148
         | 
| 209 | 
            +
            py2ls/data/styles/stylelib/grid.mplstyle,sha256=qhgYf_bsjEwqmt10dPnTc3swwuNZMUPfQw5WyvkPQ-0,272
         | 
| 210 | 
            +
            py2ls/data/styles/stylelib/high-contrast.mplstyle,sha256=Kinmne9-hBncITijLL0aDaVArZFt4lQWCfD83CnK464,193
         | 
| 211 | 
            +
            py2ls/data/styles/stylelib/high-vis.mplstyle,sha256=5E2k07BPFK8-1wE0BqNmr15_yno7nEZfJeMDE928ugU,237
         | 
| 212 | 
            +
            py2ls/data/styles/stylelib/ieee.mplstyle,sha256=NvDCqXsPw9OGf9YCoIQTVzugWYMQzqZod5r6I6bxBEo,393
         | 
| 213 | 
            +
            py2ls/data/styles/stylelib/light.mplstyl,sha256=ylu3JrfYl4ec9XX8oyIczGMpfxi38ytU_J6_AuHrDQ0,245
         | 
| 214 | 
            +
            py2ls/data/styles/stylelib/muted.mplstyle,sha256=amHDDmOg-2BPcciCACZ0HuWoZs_HGZgLMb6nb-xZ1pM,255
         | 
| 215 | 
            +
            py2ls/data/styles/stylelib/nature-reviews-latex.mplstyle,sha256=nj3nEjH4IZuE4R3uUe8l7mzgOlYzFX0KbbTv3k8EUlk,32778
         | 
| 216 | 
            +
            py2ls/data/styles/stylelib/nature-reviews.mplstyle,sha256=AaPSGjKm3Wjqj9I6ohcr4XnJOPT34FQ7KIU2YclJvW0,32762
         | 
| 217 | 
            +
            py2ls/data/styles/stylelib/nature.mplstyle,sha256=HTm3l0tx2iuSNJ9_ldLhf5Tcg7M1oOHBjfq1IrNjsOI,906
         | 
| 218 | 
            +
            py2ls/data/styles/stylelib/no-latex.mplstyle,sha256=u3LxgFzbtoimPoxU1kVdGMeOKYemqPdToicbArlBtVw,226
         | 
| 219 | 
            +
            py2ls/data/styles/stylelib/notebook.mplstyle,sha256=0Y_8DQqIn0yJRb-bx_jKByp1K1PD9fkDDqp7iLlV4Z0,643
         | 
| 220 | 
            +
            py2ls/data/styles/stylelib/paper.mplstyle,sha256=p3syIHLGLE-EsDmFZAtQi831Crk9sn72BmBY4yPNyVo,5881
         | 
| 221 | 
            +
            py2ls/data/styles/stylelib/retro.mplstyle,sha256=gMZMYpWDLhOoab7_p8F075yEfIyMucWsWgICqeyFeIk,135
         | 
| 222 | 
            +
            py2ls/data/styles/stylelib/sans.mplstyle,sha256=YGdrhXWVDFeo0YvdqGiSuF6RrD2NxyJV5grVxpqcKSU,364
         | 
| 223 | 
            +
            py2ls/data/styles/stylelib/scatter.mplstyle,sha256=g8bxBf-euVKwcN35emBoHzgGBjE_Oux0y7BJl4sr_cM,333
         | 
| 224 | 
            +
            py2ls/data/styles/stylelib/science.mplstyle,sha256=t6uBwdG8di84mgxQyJWj9jRsux385Td41vRDoxmqn6E,1110
         | 
| 225 | 
            +
            py2ls/data/styles/stylelib/std-colors.mplstyle,sha256=eD1GJ6b6wF4eygQO-wwaseHKK85TMV9tqExH5CZswX0,201
         | 
| 226 | 
            +
            py2ls/data/styles/stylelib/vibrant.mplstyle,sha256=99EGa-cDX380VLtURAwimFB-FmTvTZJdJ7rAkTkmhok,227
         | 
| 208 227 | 
             
            py2ls/data/usages_pd copy.json,sha256=cS2fYSKvSC274uAw1l6eMPGzLMvZt184dfbcuUiErmw,197313
         | 
| 209 228 | 
             
            py2ls/data/usages_pd.json,sha256=4DgbPahF4G5Hd6G0TQurb6dBRVey67lpKdgK6A01Tww,266818
         | 
| 210 229 | 
             
            py2ls/data/usages_sns.json,sha256=rZ2uxBFhQr0UzvuPZMIF3ngQRFRZDAjgmI-0TNRFcdU,9620
         | 
| @@ -225,6 +244,6 @@ py2ls/sleep_events_detectors.py,sha256=bQA3HJqv5qnYKJJEIhCyhlDtkXQfIzqksnD0YRXso | |
| 225 244 | 
             
            py2ls/stats.py,sha256=qBn2rJmNa_QLLUqjwYqXUlGzqmW94sgA1bxJU2FC3r0,39175
         | 
| 226 245 | 
             
            py2ls/translator.py,sha256=zBeq4pYZeroqw3DT-5g7uHfVqKd-EQptT6LJ-Adi8JY,34244
         | 
| 227 246 | 
             
            py2ls/wb_detector.py,sha256=7y6TmBUj9exCZeIgBAJ_9hwuhkDh1x_-yg4dvNY1_GQ,6284
         | 
| 228 | 
            -
            py2ls-0.2.4.9. | 
| 229 | 
            -
            py2ls-0.2.4.9. | 
| 230 | 
            -
            py2ls-0.2.4.9. | 
| 247 | 
            +
            py2ls-0.2.4.9.8.dist-info/METADATA,sha256=6fC7rDee-KAT6thcwbAXPGBOBOOoZXacpcc7qAkAHj8,20175
         | 
| 248 | 
            +
            py2ls-0.2.4.9.8.dist-info/WHEEL,sha256=FMvqSimYX_P7y0a7UY-_Mc83r5zkBZsCYPm7Lr0Bsq4,88
         | 
| 249 | 
            +
            py2ls-0.2.4.9.8.dist-info/RECORD,,
         | 
| 
            File without changes
         |