from gdshelpers.parts.text import Text
from gdshelpers.geometry.chip import Cell

text = Text([0, -5], 1, 'gdshelpers.parts.text.Text')

cell = Cell('TEXT')
cell.add_to_layer(1, text)
cell.show()