-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (35 loc) · 986 Bytes
/
pyproject.toml
File metadata and controls
42 lines (35 loc) · 986 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
38
39
40
41
42
[project]
name = "pecos-selene-quest"
version = "0.8.0.dev2"
requires-python = ">=3.10"
description = "PECOS Quest simulator plugin for the Selene quantum emulator"
readme = "README.md"
license = "Apache-2.0"
dependencies = [
"selene-core>=0.2",
]
[project.optional-dependencies]
test = [
"pytest>=7",
"selene-sim>=0.2",
"guppylang>=0.14",
]
[project.urls]
homepage = "https://pecos.io"
repository = "https://github.com/PECOS-packages/PECOS"
# Attribution: This plugin wraps QuEST (Quantum Exact Simulation Toolkit)
# QuEST is developed by the QuEST-Kit team and is available at:
# https://github.com/quest-kit/QuEST
# QuEST is licensed under the MIT License.
[build-system]
requires = ["hatchling", "packaging"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["python/pecos_selene_quest"]
[tool.hatch.build.hooks.custom]
path = "hatch_build.py"
[tool.uv]
cache-keys = [
{ file = "src/**/*.rs" },
{ file = "Cargo.toml" },
]