forked from QuantumApplicationLab/qiskit_tomography_toolbox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
55 lines (48 loc) · 1.43 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
# file pyproject.toml
[project]
name = "qiskit_tomography_toolbox"
dynamic = ["version"]
readme = "README.md"
requires-python = ">=3.8"
license = { file = "LICENSE.txt" }
description = "Toolbox for quantum tomography in qiskit"
authors = [{ name = "Nicolas Renaud", email = "[email protected]" }]
dependencies = [
"treelib",
"certifi>=2021.5.30",
"importlib_metadata>=4.8.1",
"qiskit-aer>=0.10.3",
"qiskit>=0.14.1",
"qiskit_experiments",
]
[project.optional-dependencies]
# Dev dependencies.
dev = [
"coverage>=5.5",
"pylint>=2.9.5",
"nbqa>=1.1.1",
"treon>=0.1.3",
"pytest>=6.2.5",
"pytest-randomly>=1.2.0",
"mypy>=0.780",
"mypy-extensions>=0.4.3",
"jupyter-sphinx>=0.3.2",
"nbsphinx>=0.8.8",
"sphinx-autodoc-typehints>=1.17.0",
"qiskit-sphinx-theme~=1.16.0",
"reno>=3.5.0",
# Black's formatting rules can change between major versions, so we use
# the ~= specifier for it.
"black[jupyter]~=22.1",
]
[project.urls]
"Homepage" = "https://github.com/QuantumApplicationLab/qiskit_tomography_toolbox"
"Bug Tracker" = "https://github.com/QuantumApplicationLab/qiskit_tomography_toolbox/issues"
[build-system]
requires = ["setuptools>=61.0", "wheel", "toml", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
py-modules = []
[tool.setuptools.packages.find]
include = ['qiskit_tomography_toolbox*']
exclude = ['qiskit_tomography_toolbox*tests']