This repository was archived by the owner on Nov 13, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
67 lines (52 loc) · 1.33 KB
/
pyproject.toml
File metadata and controls
67 lines (52 loc) · 1.33 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
67
[tool.poetry]
name = "passive_auto_design"
version = "0.1.14"
description = ""
authors = ["Patarimi <38954040+Patarimi@users.noreply.github.com>"]
license = "MIT"
[tool.poetry.group.docs.dependencies]
mkdocs = "^1.3.1"
mkdocs-material = "^9.0.0"
mkdocstrings = "^0.23.0"
pytkdocs = {extras = ["numpy-style"], version = "^0.16.1"}
mkdocs-gen-files = "^0.5.0"
mkdocs-section-index = "^0.3.4"
mkdocs-literate-nav = "^0.6.0"
mkdocstrings-python = "^1.1.2"
[tool.poetry.group.tests.dependencies]
pytest = "^7.2.0"
pytest-cov = "^4.0.0"
tox = "^4.0.0"
pytest-sugar = "^0.9.7"
[tool.poetry.group.web.dependencies]
streamlit = "^1.13.0"
[tool.poetry.group.dev.dependencies]
flake8 = "^6.0.0"
black = "^23.3.0"
pyupgrade = "^3.2.0"
pre-commit = "^3.3.2"
commitizen = "^3.2.2"
[tool.semantic_release]
version_variable = [
"pyproject.toml:version"
]
branch = "master"
upload_to_pipy = true
upload_to_release = true
build_command = "pip install poetry && poetry build"
[tool.poetry.dependencies]
python = ">=3.9,<3.9.7 || >3.9.7,<3.12"
numpy = "^1.25.0"
matplotlib = "^3.5.2"
scipy = "^1.11.0"
scikit-rf = ">=0.29.0"
PyYAML = "^6.0"
klayout = "^0.28"
pydantic = "^2.0.0"
[tool.commitizen]
name = "cz_conventional_commits"
version = "0.1.11"
tag_format = "v$version"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"