-
Notifications
You must be signed in to change notification settings - Fork 132
Expand file tree
/
Copy pathpyproject.toml
More file actions
114 lines (106 loc) · 3.1 KB
/
pyproject.toml
File metadata and controls
114 lines (106 loc) · 3.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
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
[build-system]
requires = ["setuptools>=77.0", "setuptools_scm"]
build-backend = "setuptools.build_meta"
[project]
name = "qiskit-experiments"
dynamic = ["version"]
description = "Software for developing quantum computing programs"
dependencies = [
"numpy>=1.17",
"scipy>=1.4",
"qiskit>=1.3",
"qiskit-ibm-experiment>=0.4.6",
"qiskit_ibm_runtime>=0.34.0",
"matplotlib>=3.4",
"uncertainties",
"lmfit",
"rustworkx",
"pandas>=1.1.5",
"packaging",
]
keywords = ["qiskit sdk quantum"]
readme = "README.md"
authors = [
{name = "Qiskit Development Team", email = "qiskit@us.ibm.com"},
]
classifiers = [
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Scientific/Engineering",
]
requires-python = ">=3.10"
license = "Apache-2.0"
[project.urls]
Homepage = "https://github.com/Qiskit-Community/qiskit-experiments"
"Bug Tracker" = "https://github.com/Qiskit-Community/qiskit-experiments/issues"
Documentation = "https://qiskit-community.github.io/qiskit-experiments"
"Source Code" = "https://github.com/Qiskit-Community/qiskit-experiments"
[project.optional-dependencies]
extras = [
"cvxpy>=1.3.2", # for tomography
"scikit-learn", # for discriminators
"qiskit-aer>=0.13.2",
]
[project.entry-points."qiskit.synthesis"]
"clifford.rb_default" = "qiskit_experiments.library.randomized_benchmarking.clifford_synthesis:RBDefaultCliffordSynthesis"
[dependency-groups]
formatting = ["black~=25.1"]
devbase = []
testing = [
{include-group = "devbase"},
# Test runner tools
"coverage>=5.5",
"ddt>=1.6.0",
"fixtures",
"stestr",
# testtools 2.8.3 is incompatible with stestr<=4.2.0. Avoid that version
# and hope that the next stestr or testtools release fixes the
# incompatibility.
# See: https://github.com/testing-cabal/testtools/pull/566
"testtools!=2.8.3",
# Packages only used in tests
"multimethod",
]
docs = [
{include-group = "devbase"},
# Documentation tools
"arxiv",
"jupyter-sphinx>=0.4.0",
"nbsphinx",
"pylatexenc",
"qiskit-sphinx-theme",
"reno>=4.1.0",
"sphinx>=6.2.1",
"sphinx-copybutton",
"sphinx-design",
"sphinx-remove-toctrees",
]
linting = [
# Linters
"pylint~=4.0.3",
# Test dependencies needed because the test files are linted
{include-group = "testing"},
]
dev = [
{include-group = "docs"},
{include-group = "formatting"},
{include-group = "linting"},
{include-group = "testing"},
]
[tool.setuptools.packages.find]
include = ["qiskit_experiments*"]
[tool.setuptools.dynamic]
version = {file = ["qiskit_experiments/VERSION.txt"]}
[tool.black]
line-length = 100
target-version = ['py310']