forked from qiskit-community/qiskit-research
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
60 lines (55 loc) · 1.48 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
56
57
58
59
60
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "qiskit_research"
version = "0.0.2"
description = "Research using Qiskit, demonstrating best practices for running quantum computing experiments."
readme = "README.md"
license = { file = "LICENSE.txt" }
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Scientific/Engineering :: Physics",
]
requires-python = ">=3.8"
dependencies = [
"mapomatic==0.8.0",
"mthree==0.24",
"pylatexenc",
"qiskit-aer~=0.11",
"qiskit-experiments==0.5.2",
"qiskit-ibm-runtime",
"qiskit-ibmq-provider",
"qiskit-nature~=0.5",
"qiskit-terra==0.23",
]
[project.optional-dependencies]
dev = [
"black[jupyter]~=23.1",
"coverage",
"ddt~=1.5",
"importlib_metadata",
"ipywidgets",
"mypy==1.3.0",
"jupyter-sphinx",
"matplotlib",
"nbmake",
"nbsphinx",
"pylatexenc",
"pylint==2.14",
"pytest==7.1",
"reno",
"sphinx-autodoc-typehints",
"tqdm>=4.59.0",
]
[tool.autoflake]
remove-unused-variables = true
imports = ["qiskit", "qiskit_aer", "qiskit_nature", "qiskit_ibm_runtime"]