hopsflow/pyproject.toml

30 lines
737 B
TOML
Raw Normal View History

2021-12-09 14:59:46 +01:00
[tool.poetry]
name = "hopsflow"
2024-01-31 10:15:35 -05:00
version = "1.6.0"
2021-12-09 14:59:46 +01:00
description = "Calculating open system bath energy changes with HOPS and analytically."
authors = ["Valentin Boettcher <hiro at protagon.space>"]
license = "MIT"
repository = "https://github.com/vale981/hopsflow"
[tool.poetry.dependencies]
python = ">=3.9,<3.11"
sqlitedict = "^1.7.0"
2022-01-18 16:06:26 +01:00
numpy = "^1.20.0"
2021-12-09 14:59:46 +01:00
scipy = "^1.7.3"
tqdm = "^4.62.3"
2022-11-24 21:04:27 +01:00
lmfit = "=1.0.2"
2024-01-28 14:47:43 -05:00
ray = "^2.2.0"
hops = { git = "https://github.com/OpQuSyD/hops.git", branch="main" }
2022-04-06 18:26:24 +02:00
opt-einsum = "^3.3.0"
2022-11-30 12:49:38 -05:00
portalocker = "^2.6.0"
2021-12-09 14:59:46 +01:00
[tool.poetry.dev-dependencies]
mypy = "^0.910"
2021-12-10 10:52:24 +01:00
Sphinx = "^4.3.1"
pydata-sphinx-theme = "^0.7.2"
2022-01-31 18:32:11 +01:00
ipython = "^8.0.1"
2021-12-09 14:59:46 +01:00
[build-system]
2022-02-04 11:54:33 +01:00
requires = ["poetry>=0.12"]
2021-12-09 14:59:46 +01:00
build-backend = "poetry.core.masonry.api"