-
Notifications
You must be signed in to change notification settings - Fork 57
/
pyproject.toml
51 lines (46 loc) · 1.27 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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "qiskit-research"
version = "0.0.5.dev"
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 = [
"qiskit==1.1.1",
"qiskit-aer",
"qiskit-ibm-runtime",
]
[project.optional-dependencies]
dev = [
"black[jupyter]",
"coverage",
"ddt",
"importlib_metadata",
"mypy",
"jupyter-sphinx",
"nbmake",
"nbsphinx",
"pylint",
"pytest",
"qiskit[visualization]",
"qiskit_sphinx_theme",
"sphinx-autodoc-typehints",
]
[tool.autoflake]
remove-unused-variables = true
imports = ["qiskit", "qiskit_aer", "qiskit_nature", "qiskit_ibm_runtime"]