mirror of
https://github.com/vale981/two_qubit_model
synced 2025-03-04 09:11:42 -05:00
30 lines
780 B
TOML
30 lines
780 B
TOML
[tool.poetry]
|
|
name = "hiro_models"
|
|
version = "1.3.0"
|
|
description = "Operators for a general model of two interacting qubits coupled to two baths."
|
|
authors = ["Valentin Boettcher <hiro at protagon.space>"]
|
|
license = "MIT"
|
|
repository = "https://github.com/vale981/two_qubit_model"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = ">=3.9,<3.11"
|
|
numpy = "^1.20.0"
|
|
qutip = "^4.6.3"
|
|
hopsflow = { git = "https://github.com/vale981/hopsflow", branch="main" }
|
|
filelock = "^3.6.0"
|
|
matplotlib = "^3.6.2"
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
mypy = "^0.910"
|
|
ipython = "^8.0.1"
|
|
pytest = "^7.0.1"
|
|
|
|
[build-system]
|
|
requires = ["poetry>=0.12"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
[tool.pytest.ini_options]
|
|
filterwarnings = [
|
|
"ignore::DeprecationWarning",
|
|
"ignore:this implementation:UserWarning",
|
|
]
|