master-thesis/python/pyproject.toml

29 lines
881 B
TOML
Raw Normal View History

2021-12-09 15:13:50 +01:00
[tool.poetry]
2021-12-09 15:42:00 +01:00
name = "hiro_master_python"
2021-12-09 15:13:50 +01:00
version = "1.0"
description = "Calculating open system bath energy changes with HOPS and analytically."
authors = ["Valentin Boettcher <hiro at protagon.space>"]
license = "MIT"
[tool.poetry.dependencies]
python = ">=3.9,<3.11"
sqlitedict = "^1.7.0"
numpy = "^1.21.4"
scipy = "^1.7.3"
stocproc = { git = "https://github.com/vale981/stocproc" }
fcSpline = { git = "https://github.com/vale981/fcSpline" }
2021-12-09 15:45:14 +01:00
hopsflow = {git = "https://github.com/vale981/hopsflow", rev = "main"}
2021-12-09 17:12:33 +01:00
hops = {git = "git@gitlab.hrz.tu-chemnitz.de:s4498638--tu-dresden.de/hops.git", rev = "main"}
2021-12-09 15:13:50 +01:00
tqdm = "^4.62.3"
lmfit = "^1.0.3"
matplotlib = "^3.5.0"
2021-12-09 15:42:00 +01:00
jupyter = "^1.0.0"
2021-12-09 17:12:33 +01:00
qutip = "^4.6.2"
2021-12-11 22:32:14 +01:00
cache-decorator = {extras = ["numpy"], version = "^2.0.12"}
2021-12-09 15:13:50 +01:00
[tool.poetry.dev-dependencies]
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.core.masonry.api"