import numpy as np
from gdshelpers.parts.text import Text
from gdshelpers.geometry.chip import Cell

text = Text([0, 0], 10, 'top-right', alignment='right-top')

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