24 lines
667 B
Python
24 lines
667 B
Python
"""
|
|
snarl
|
|
=====
|
|
|
|
Layout connectivity checker.
|
|
|
|
`snarl` is a python package for checking electrical connectivity in multi-layer layouts.
|
|
|
|
It is intended to be "poor-man's LVS" (layout-versus-schematic), for when poverty
|
|
has deprived the man of both a schematic and a better connectivity tool.
|
|
|
|
The main functionality is in `trace_connectivity`.
|
|
Useful classes, namely `NetsInfo` and `NetName`, are in `snarl.tracker`.
|
|
`snarl.interfaces` contains helper code for interfacing with other packages.
|
|
"""
|
|
from .main import trace_connectivity
|
|
from .tracker import NetsInfo, NetName
|
|
from . import interfaces
|
|
|
|
|
|
__author__ = 'Jan Petykiewicz'
|
|
|
|
from .VERSION import __version__
|