From 33e2a08d095af1db9c695a4ee1a9f5a633a3f2a9 Mon Sep 17 00:00:00 2001 From: Lukas Chrostowski Date: Wed, 8 Jan 2025 00:23:48 -0800 Subject: [PATCH] MANIFEST.in file required for OPICS --- klayout_dot_config/grain.xml | 2 +- klayout_dot_config/python/MANIFEST.in | 5 +++++ klayout_dot_config/python/SiEPIC/__init__.py | 2 +- klayout_dot_config/python/pyproject.toml | 2 +- 4 files changed, 8 insertions(+), 3 deletions(-) create mode 100644 klayout_dot_config/python/MANIFEST.in diff --git a/klayout_dot_config/grain.xml b/klayout_dot_config/grain.xml index db78f330..3b11c0f3 100644 --- a/klayout_dot_config/grain.xml +++ b/klayout_dot_config/grain.xml @@ -1,7 +1,7 @@ siepic_tools - 0.5.19 + 0.5.20 0.27 SiEPIC Tools Tools for designing Silicon Photonic Integrated Circuits, including waveguides, component simulations, functional verification, DRC verification, Functional verification, netlist extraction, circuit simulations. Layout can be implemented graphically or by programming in Python using the SiEPIC functions and KLayout Python API. Framework and examples for creating layouts using scripts. Includes a generic PDK (GSiP). Other PDKs are installed separately, and depend on SiEPIC-Tools. diff --git a/klayout_dot_config/python/MANIFEST.in b/klayout_dot_config/python/MANIFEST.in new file mode 100644 index 00000000..073400aa --- /dev/null +++ b/klayout_dot_config/python/MANIFEST.in @@ -0,0 +1,5 @@ + +# for OPICS +include SiEPIC/opics/libraries/catalogue.yaml + + diff --git a/klayout_dot_config/python/SiEPIC/__init__.py b/klayout_dot_config/python/SiEPIC/__init__.py index ea8d5620..83a4a308 100644 --- a/klayout_dot_config/python/SiEPIC/__init__.py +++ b/klayout_dot_config/python/SiEPIC/__init__.py @@ -2,7 +2,7 @@ SiEPIC-Tools package for KLayout ''' -__version__ = "0.5.19" +__version__ = "0.5.20" print("KLayout SiEPIC-Tools version %s" %__version__) diff --git a/klayout_dot_config/python/pyproject.toml b/klayout_dot_config/python/pyproject.toml index d75950b5..87d98d54 100644 --- a/klayout_dot_config/python/pyproject.toml +++ b/klayout_dot_config/python/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "SiEPIC" -version = "0.5.19" +version = "0.5.20" authors = [ { name="Lukas Chrostowski", email="lukasc@ece.ubc.ca" }, ]