-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
68 lines (61 loc) · 1.61 KB
/
pyproject.toml
File metadata and controls
68 lines (61 loc) · 1.61 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
# file pyproject.toml
[project]
name = "hhl_prototype"
version = "0.1.0"
# dynamic = [
# "version",
# ]
readme = "README.md"
requires-python = ">=3.8"
license = { file = "LICENSE.txt" }
description = "HHL quantum linear solver"
authors = [
{ name = "Quantum Application Lab", email = "info@quantumapplicationlab.com" },
]
dependencies = [
"certifi>=2021.5.30",
"importlib_metadata>=4.8.1",
"qiskit-aer>=0.10.3",
"qiskit>=0.44",
"qiskit_experiments>=0.5.3",
"qiskit_ibm_runtime>=0.9.3",
"qiskit_algorithms>=0.2.1",
"ipykernel>=6.15.0",
"matplotlib>=3.5.3",
"pylatexenc>=2.10",
"tqdm>=4.64.1",
"networkx>=2.8.4",
"sparse>=0.14.0",
"treelib",
]
[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/hhl-prototype"
"Bug Tracker" = "https://github.com/QuantumApplicationLab/hhl-prototype/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 = ['hhl_prototype*']
exclude = ['hhl_prototype*tests']