Metadata-Version: 2.3
Name: iklayout
Version: 0.0.6
Summary: 
Author: Jacob Windsor
Author-email: jwindsor@axiomatic-ai.com
Requires-Python: >=3.10,<3.14
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Dist: klayout (>=0.29.11,<0.30.0)
Requires-Dist: matplotlib (>=3.10.0,<4.0.0)
Requires-Dist: pillow (>=11.1.0,<12.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/to/your/gds.gds"

iklayout.show(path)
```
