-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
90 lines (83 loc) · 1.76 KB
/
pyproject.toml
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
[project]
name = "bloqade-analog-examples"
version = "0.2.0"
description = "Bloqade Analog Examples"
authors = [
{name = "QuEra Computing Inc.", email = "[email protected]"},
]
requires-python = ">=3.9,<3.13"
readme = "README.md"
license = {text = "Apache License 2.0"}
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["src/bloqade"]
[tool.black]
line-length = 88
[tool.ruff]
exclude = [
".bzr",
".direnv",
".eggs",
".git",
".hg",
".mypy_cache",
".nox",
".pants.d",
".pytype",
".ruff_cache",
".svn",
".tox",
".venv",
"__pypackages__",
"_build",
"buck-out",
"build",
"dist",
"node_modules",
"venv",
]
dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$"
# Assume Python 3.9.
target-version = "py39"
[tool.jupytext]
formats = "ipynb,py:percent"
hide_notebook_metadata = false
[dependency-groups]
dev = [
"black>=24.10.0",
"coverage>=7.6.10",
"ipykernel>=6.29.5",
"ipython>=8.18.1",
"jupyter>=1.1.1",
"jupytext>=1.16.6",
"mypy>=1.14.1",
"pre-commit>=4.0.1",
"pytest-recording>=0.13.2",
"pytest>=8.3.4",
"ruff>=0.8.5",
"vcrpy>=7.0.0",
"pyinstrument>=5.0.0",
"scikit-optimize>=0.10.2",
"matplotlib>=3.9.4",
"icecream>=2.1.3",
"tqdm>=4.67.1",
"rust-just>=1.39.0",
]
doc = [
"mkdocs>=1.5.3",
"mkdocs-material>=9.1.9",
"mkdocstrings[python]>=0.21.2",
"mkdocs-minify-plugin>=0.6.4",
"mkdocs-jupyter>=0.24.1",
"mkdocs-gen-files>=0.5.0",
"mkdocs-literate-nav>=0.6.0",
"mike>=1.1.2",
"matplotlib>=3.8.0",
"neoteroi-mkdocs>=1.0.4",
"numpy>=1.25.2",
"bloqade-analog>=0.16.0",
]