Metadata-Version: 2.3
Name: iklayout
Version: 0.0.2
Summary: 
Author: Jacob Windsor
Author-email: jwindsor@axiomatic-ai.com
Requires-Python: >=3.11,<3.14
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Dist: ipympl (>=0.9.6,<0.10.0)
Requires-Dist: ipywidgets (>=8.1.5,<9.0.0)
Requires-Dist: klayout (>=0.29.11,<0.30.0)
Requires-Dist: matplotlib (>=3.10.0,<4.0.0)
Requires-Dist: numpy (>=2.2.2,<3.0.0)
Requires-Dist: plotly (>=5.24.1,<6.0.0)
Description-Content-Type: text/markdown

# iKlayout
This is a port of [kLayout](https://www.klayout.de/) to a python notebook widget using matplotlib to enable interactive klayouts in notebooks.

## Installation

`pip install iklayout`

## Usage

```python
%matplotlib widget

import iklayout

path = "PATH_T_A_GDS_FILE"

iklayout.show(path)
```
