Plotly Box Plot with Visible values

Hello,
I want my box plot to display q1, q1, min, max and median as text on the plot, without having to hover over it.

y0 = np.random.randn(50)-1
y1 = np.random.randn(50)+1

trace0 = go.Box(
    y=y0
)
trace1 = go.Box(
    y=y1
)
data = [trace0, trace1]
py.iplot(data)

We offer a way to do that at the moment, unfortunately.