-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
36 lines (32 loc) · 1.13 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
[tool.poetry]
name = "variPEPS"
version = "0.6.9"
description = "Versatile tensor network library for variational ground state simulations in two spatial dimensions"
authors = ["Jan Naumann <[email protected]>", "Philipp Schmoll <[email protected]>", "Frederik Wilde", "Finn Krein"]
license = "GPL-3.0-or-later"
readme = "README.md"
repository = "https://github.com/variPEPS/variPEPS_Python"
documentation = "https://varipeps.readthedocs.io/en/stable/"
packages = [{include = "varipeps"}]
[tool.poetry.dependencies]
python = ">=3.10,<4.0"
numpy = ">=1.21.2"
scipy = ">=1.7.1"
jax = {extras = ["cpu"], version = ">=0.4.35"}
tensornetwork = ">=0.4.5"
poethepoet = ">=0.10.0"
h5py = ">=3.6.0"
tqdm = {extras = ["notebook"], version = ">=4.64.1"}
tqdm-loggable = "^0.1.3"
[tool.poetry.dev-dependencies]
black = ">=21.8-beta.0"
ipython = ">=7.27.0"
pylint = ">=2.10.2"
flake8 = ">=3.9.2"
mypy = ">=0.910"
jupyter = ">=1.0.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poe.tasks]
use-cuda = "pip install --upgrade 'jax[cuda]' -f https://storage.googleapis.com/jax-releases/jax_cuda_releases.html"