-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (47 loc) · 1.17 KB
/
pyproject.toml
File metadata and controls
52 lines (47 loc) · 1.17 KB
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
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "graphqec"
version = "0.9.5.dev"
description = "Quantum Error Correction with graph neural network"
authors = [
{ name = "Gengyuan Hu", email = "china.fadelis@gmail.com" },
]
readme = "README.md"
requires-python = ">=3.11"
license = { file = "LICENSE" }
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
# machine learning
"torch==2.5.1",
"flash-linear-attention==0.3.0",
# "causal-conv1d==1.5.0",
"accelerate>=1.0.0",
"einops",
# visualization
"wandb",
"tensorboard",
"matplotlib",
# QEC tools
"stim>=1.13.0",
"ldpc>=2.0.0",
"pymatching",
# slurm tools
"submitit",
"ipykernel",
]
[project.urls]
Homepage = "https://github.com/Fadelis98/graphqec-paper" # Replace with your repository URL
[tool.setuptools.packages.find]
include = ["graphqec"]
[[tool.uv.index]]
name = "pytorch"
url = "https://download.pytorch.org/whl/cu124"
explicit = true
[tool.uv.sources]
torch = { index = "pytorch" }