File size: 1,715 Bytes
5ccb4fd
 
 
 
 
 
6f01cc0
5ccb4fd
 
 
6f01cc0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5ccb4fd
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4e645a1
5ccb4fd
 
 
 
 
 
 
 
 
6f01cc0
 
 
 
 
 
5ccb4fd
 
 
 
 
 
 
 
 
 
 
 
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
[build-system]
requires = ["setuptools>=77", "wheel"]
build-backend = "setuptools.build_meta"

[project]
name = "hamiltonzero"
version = "0.1.1"
description = "Compiled neural wavefunctions for quantum spin systems"
readme = "README.md"
requires-python = ">=3.12"
authors = [
    {name = "Simulacra Research Inc."},
]
keywords = [
    "neural quantum states",
    "quantum many-body physics",
    "quantum Monte Carlo",
]
classifiers = [
    "Development Status :: 3 - Alpha",
    "Intended Audience :: Science/Research",
    "Programming Language :: Python :: 3",
    "Programming Language :: Python :: 3.12",
    "Topic :: Scientific/Engineering :: Physics",
]
license = "Apache-2.0 AND MIT"
license-files = [
    "LICENSE",
    "NOTICE",
    "THIRD_PARTY_NOTICES.md",
    "third_party/folx/LICENSE",
    "third_party/jax/LICENSE",
    "third_party/kfac_jax/LICENSE",
]
dependencies = [
    "absl-py>=2.5",
    "distrax>=0.1.9",
    "dm-tree>=0.1.10",
    "equinox==0.13.6",
    "immutabledict>=4.3",
    "jax==0.11.0",
    "jaxlib==0.11.0",
    "jaxtyping==0.3.9",
    "networkx>=3.5",
    "numpy>=2.3",
    "optax>=0.2.8",
    "packaging>=26",
    "typing-extensions>=4.15",
]

[project.urls]
Homepage = "https://github.com/simulacra-research/HamiltonZero"
Repository = "https://github.com/simulacra-research/HamiltonZero"
Issues = "https://github.com/simulacra-research/HamiltonZero/issues"
"Model weights" = "https://huggingface.co/simulacra-research/HamiltonZero"

[project.optional-dependencies]
notebooks = [
    "jupyterlab>=4.4",
    "matplotlib>=3.10",
]

[project.scripts]
hamiltonzero = "hamiltonzero.cli:main"

[tool.setuptools.packages.find]
where = ["src"]
include = ["hamiltonzero*", "kfac_jax*"]