-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (42 loc) · 1.7 KB
/
Copy pathpyproject.toml
File metadata and controls
47 lines (42 loc) · 1.7 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
[build-system]
requires = ["maturin>=1.15,<2.0"]
build-backend = "maturin"
[project]
name = "qodec"
# Version is sourced from the binding crate's Cargo.toml and filled in by
# maturin at build time. Bump the qodec release group with cargo-release.
dynamic = ["version"]
description = "A formal model of quantum error correction protocols."
requires-python = ">=3.11"
readme = "README-python.md"
license = { file = "../../LICENSE" }
authors = [{ name = "Microsoft Corporation" }]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering :: Physics",
"Typing :: Typed",
]
[project.urls]
Homepage = "https://github.com/microsoft/qdk-ec"
Repository = "https://github.com/microsoft/qdk-ec"
Changelog = "https://github.com/microsoft/qdk-ec/blob/main/qodec/CHANGELOG.md"
Issues = "https://github.com/microsoft/qdk-ec/issues"
[project.optional-dependencies]
parsers = ["stim>=1.16,<2"]
[tool.maturin]
# `generate-import-lib` lets PyO3 synthesize the Windows import library at build
# time, so we can cross-compile the Windows aarch64 wheel on an x86_64 agent with
# no target-arch Python interpreter. It is inert on non-Windows targets.
features = ["pyo3/abi3-py311", "pyo3/abi3t-py315", "pyo3/generate-import-lib"]
python-source = "python"
module-name = "qodec._native"
exclude = ["**/__pycache__/**", "**/*.pyc", "**/*.pyo"]
[tool.pytest.ini_options]
testpaths = ["tests"]