File size: 2,096 Bytes
6288873
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
[project]
name = "variPEPS"
version = "1.4.2"
description = "Versatile tensor network library for variational ground state simulations in two spatial dimensions"
authors = [
    {name = "Jan Naumann", email = "j.naumann@fu-berlin.de"},
    {name = "Philipp Schmoll", email = "philipp.schmoll@fu-berlin.de"},
    {name = "Roberto Losada", email = "roberto.losada@fu-berlin.de"},
    {name = "Frederik Wilde"},
    {name = "Finn Krein"}
]
license = "GPL-3.0-or-later"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
    "numpy >= 1.21.2",
    "scipy >= 1.7.1",
    "jax[cpu]>=0.8.1,<0.9.1",
    "h5py >= 3.6.0",
    "tqdm[notebook] >= 4.64.1",
    "tqdm-loggable >= 0.1.3",
    "psutil>=7.2.2",
]
keywords = [
    "physics",
    "automatic-differentiation",
    "peps",
    "tensor-networks",
    "variational-optimization",
    "quantum-many-body",
    "quantum-many-body-physics"
]
classifiers = [
    "Programming Language :: Python :: 3",
    "Intended Audience :: Science/Research",
    "Topic :: Scientific/Engineering :: Physics",
]

[project.urls]
Documentation = "https://varipeps.readthedocs.io/en/stable/"
Repository = "https://github.com/variPEPS/variPEPS_Python"
Issues = "https://github.com/variPEPS/variPEPS_Python/issues"

[dependency-groups]
dev = [
    "black>=24.10.0",
    "flake8>=7.1.1",
    "ipython>=8.31.0",
    "mypy>=1.14.1",
    "pylint>=3.3.3",
]

[build-system]
requires = ["hatchling", "scikit-build-core>=0.11.0", "nanobind>=2.7.0", "jaxlib>=0.8.1,<0.9.1"]
build-backend = "hatchling.build"

[tool.scikit-build]
# Protect the configuration against future changes in scikit-build-core
minimum-version = "build-system.requires"
# Setuptools-style build caching in a local directory
build-dir = "build/{wheel_tag}"

[tool.scikit-build.cmake]
build-type = "Release"

[tool.hatch.build.targets.wheel.hooks.scikit-build]
experimental = true

[tool.cibuildwheel]
# Enable free-threaded support
enable = ["cpython-freethreading"]
# Disable building PyPy, musllinux and thread-freethreading on Mac and Windows wheels
skip = ["pp*", "*musllinux*", "*t-win*"]