-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (33 loc) · 822 Bytes
/
Copy pathpyproject.toml
File metadata and controls
37 lines (33 loc) · 822 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
36
37
[project]
name = "qrmfold"
version = "0.8.2"
description = "A Python package to construct addressable gates for self-dual quantum Reed-Muller codes as a sequence of transversal and fold-transversal gates."
authors = [{name="Tim Chan", email="timwlc@icloud.com"}]
readme = "README.md"
license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
]
dependencies = [
"numpy",
"stim",
]
requires-python = ">=3.10"
[project.optional-dependencies]
dev = [
"build",
"ipykernel",
"ipywidgets",
"pytest",
"twine",
]
docs = [
"sphinx>=7",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["qrmfold"]