OpenRAM/compiler/gdsMill/gdsMill/__init__.py

14 lines
287 B
Python
Raw Normal View History

2016-11-08 18:57:35 +01:00
"""
Python GDS Mill Package
GDS Mill is a Python package for the creation and manipulation of binary GDS2 layout files.
"""
from .gds2reader import *
from .gds2writer import *
#from .pdfLayout import *
from .vlsiLayout import *
from .gdsStreamer import *
from .gdsPrimitives import *
2016-11-08 18:57:35 +01:00