-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
54 lines (46 loc) · 1.21 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
[tool.poetry]
name = "qutegds"
version = "0.0.1"
description = "Automated gds layout creation tool"
authors = ["The BiQuTe Team"]
license = "Apache License 2.0"
readme = "README.md"
repository = "https://github.com/biqute/qutegds/"
keywords = []
classifiers = [
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Physics",
]
[tool.poetry.dependencies]
python = ">=3.10, <3.13"
gdsfactory = "7.10.5"
klayout = "<=0.29.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.group.analysis]
optional = true
[tool.poetry.group.analysis.dependencies]
pylint = ">=2.16.0"
pylint-exit = "^1.2.0"
pytest = ">=7.2.2"
pytest-mock = ">=3.10.0"
pytest-regressions = ">=2.5.0"
mypy = "^1.7.1"
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
sphinx = "^6.1.3"
furo = "^2023.3.27"
recommonmark = "^0.7.1"
sphinxcontrib-bibtex = "^2.5.0"
sphinx-markdown-tables = "^0.0.17"
nbsphinx = "^0.9.1"
jupyter-sphinx = ">=0.4.0"
sphinx-copybutton = "^0.5.1"
sphinx-last-updated-by-git = "^0.3.5"
[[tool.mypy.overrides]]
module=["gdsfactory.*"]
ignore_missing_imports = true
[tool.pytest.ini_options]
filterwarnings = ["ignore::DeprecationWarning"]