forked from quantumgizmos/ldpc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (30 loc) · 732 Bytes
/
pyproject.toml
File metadata and controls
35 lines (30 loc) · 732 Bytes
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
[build-system]
requires = ["cython>=3.0.2","setuptools>=68.2.2","numpy>=1.24.0"]
build-backend = "setuptools.build_meta"
[project]
name = "ldpc"
description = "LDPC: Python Tools for Low Density Parity Check Codes"
readme = "README.md"
authors = [
{ name = "Joschka Roffe", email = "joschka@roffe.eu" }
]
license = { file = "LICENSE" }
classifiers = [
"Development Status :: 4 - Beta",
]
requires-python = ">=3.10"
dependencies = [
"numpy>=1.24.0",
"scipy>=1.9.3",
"tqdm",
"pytest",
"stim",
"sinter>=1.12.0",
"pymatching"
]
version = "2.4.1"
[project.urls]
Documentation = "https://software.roffe.eu/ldpc"
[tool.setuptools.packages.find]
where = ["src_python"]
include = ["ldpc","ldpc.*"]