forked from gdsfactory/gdsfactory
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
40 lines (35 loc) · 813 Bytes
/
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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta:__legacy__"
# [tool.pytest.ini_options]
# testpaths = ['gdsfactory']
# addopts = '--tb=short'
# norecursedirs = [
# 'gdsfactory/simulation',
# 'gdsfactory/icyaml',
# ]
# filterwarnings =
# ignore::UserWarning
# ignore::DeprecationWarning
# addopts = --tb=no
#usefixtures =
# cleandir
# addopts = '--html=test_report.html' '--self-contained-html'
[tool.mypy]
# strict = true
exclude = [
'gdsfactory/icyaml/',
'gdsfactory/simulation/',
'gdsfactory/extra/',
'gdsfactory/tests/',
'extra/',
'gdsfactory/components/extra/',
]
[tool.ufmt]
excludes = [
"gdsfactory/__init__.py",
]
[tool.isort]
profile = "black"
src_paths = ["gdsfactory"]
skip = ['build', '.tox', 'venv']