-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
76 lines (68 loc) · 1.6 KB
/
Copy pathpyproject.toml
File metadata and controls
76 lines (68 loc) · 1.6 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
68
69
70
71
72
73
74
75
76
[project]
name = "qdesignoptimizer"
version = "0.0.2"
description = "Optimizer for superconducting quantum chip designs"
authors = [
{ name = "202Q-lab" },
{ name = "Axel Eriksson" },
{ name = "Lukas Splitthoff" },
]
license = "Apache License 2.0"
readme = "README.md"
keywords = ["Quantum"]
classifiers = ["Programming Language :: Python :: 3"]
requires-python = ">=3.10,<3.11"
dependencies = [
"addict==2.4.0",
"descartes==1.1.0",
"gdspy==1.6.12",
"geopandas==0.12.2",
"ipython==8.10.0",
"matplotlib==3.7.0",
"numpy==1.24.2",
"pandas==1.5.3",
"pint==0.20.1",
"pyEPR-quantum==0.9.*",
"pygments==2.14.0",
"pyside2==5.15.2.1",
"qdarkstyle==3.1",
"qutip==4.7.1",
"scipy==1.10.0",
"shapely==2.0.1",
"scqubits==3.1.0",
"gmsh==4.11.1",
"pyaedt==0.6.94",
"pyyaml==6.0",
"cython<3.0.0",
"ipykernel",
]
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
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-cov = ">=4.1.0"
mypy = "^1.7.1"
pandas-stubs = "*"
pre-commit = ">=4.0.1"
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
sphinx = "*"
nbsphinx = "*"
sphinx-rtd-theme = "*"
sphinxcontrib-bibtex = "*"
sphinx-copybutton = "*"
sphinx-last-updated-by-git = "*"
sphinx-mdinclude = "*"
[tool.pytest.ini_options]
testpaths = ['tests/']
[[tool.mypy.overrides]]
module = ["qiskit_metal.*", "matplotlib.*", "pyEPR.*", "pyaedt.*", "scipy.*"]
ignore_missing_imports = true
[tool.mypy]
allow_redefinition = true