netlist-graph 0.1.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,6 @@
1
+ """Graph-based netlist analysis for SKY130 post-synthesis netlists."""
2
+
3
+ from netlist_graph.parser import parse_netlist
4
+ from netlist_graph.graph import NetlistGraph
5
+
6
+ __all__ = ["parse_netlist", "NetlistGraph"]