two_qubit_model/pyproject.toml
2022-11-28 19:30:16 +01:00

31 lines
801 B
TOML

[tool.poetry]
name = "hiro_models"
version = "1.2.3"
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" }
beartype = "^0.10.1"
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",
]