-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (38 loc) · 1 KB
/
pyproject.toml
File metadata and controls
44 lines (38 loc) · 1 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
[project]
name = "ionq-getting-started"
version = "1.0.0"
description = "IonQ Quantum Computing Samples - Getting started with various quantum SDKs"
readme = "README.md"
requires-python = ">=3.10,<3.14"
license = { text = "Apache-2.0" }
dependencies = [
# Core dependencies
"jupyter>=1.0.0",
"pytest>=7.0.0",
"nbconvert>=7.0.0",
"requests>=2.28.0",
"ipykernel>=6.0.0",
# Quantum SDKs
"qiskit[visualization]>=1.0.0",
"qiskit-ionq>=0.5.0",
"cirq>=1.0.0",
"cirq-ionq>=1.0.0",
"pennylane>=0.30.0",
"pennylane-ionq>=0.30.0",
# "projectq>=0.8.0", # fails to build on Python 3.12+
"cudaq>=0.6.0",
# Visualization and utilities
"matplotlib>=3.5.0",
"pylatexenc>=2.10",
"pyqasm>=0.1.0",
]
[project.optional-dependencies]
dev = [
"pytest-xdist>=3.0.0", # For parallel test execution
]
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]