Installation#
Generate an API Key. Watch this Video
Download VSCode extension from the Marketplace
Creating a GDSFactory+ Project#
To configure GDSFactory+ in your project add the following to your project’s pyproject.toml
:
[project]
name = "..." # set the name of he project
requires-python = ">=3.11.0"
version = "0.0.0"
dependencies = []
[tool.gdsfactoryplus.pdk]
name = "..." # set the pdk used in this project
[tool.gdsfactoryplus.sim.wls]
max = 1.36
min = 1.26
num = 300
[project.optional-dependencies]
dev = ["pre-commit", "ruff", "tbump"]
[tool.setuptools.packages.find]
namespaces = false
where = ["."]