2022-02-17 16:53:02 +01:00
|
|
|
[tool.poetry]
|
2022-03-22 10:12:58 +01:00
|
|
|
name = "hiro_models"
|
2022-11-29 15:20:27 -05:00
|
|
|
version = "1.3.0"
|
2022-02-17 16:53:02 +01:00
|
|
|
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"
|
2022-03-21 13:39:25 +01:00
|
|
|
hopsflow = { git = "https://github.com/vale981/hopsflow", branch="main" }
|
2022-03-21 14:55:52 +01:00
|
|
|
filelock = "^3.6.0"
|
2022-11-28 19:30:16 +01:00
|
|
|
matplotlib = "^3.6.2"
|
2022-02-17 16:53:02 +01:00
|
|
|
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
|
|
mypy = "^0.910"
|
|
|
|
ipython = "^8.0.1"
|
2022-02-22 14:00:57 +01:00
|
|
|
pytest = "^7.0.1"
|
2022-02-17 16:53:02 +01:00
|
|
|
|
|
|
|
[build-system]
|
|
|
|
requires = ["poetry>=0.12"]
|
|
|
|
build-backend = "poetry.core.masonry.api"
|
2022-02-22 14:00:57 +01:00
|
|
|
|
|
|
|
[tool.pytest.ini_options]
|
|
|
|
filterwarnings = [
|
|
|
|
"ignore::DeprecationWarning",
|
|
|
|
"ignore:this implementation:UserWarning",
|
|
|
|
]
|