generated from pedrorrivero/pyproject-qiskit
-
Notifications
You must be signed in to change notification settings - Fork 8
/
pyproject.toml
104 lines (97 loc) · 2.66 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
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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "quantum-enablement"
authors = [
{name = "Pedro Rivero", email = "[email protected]"},
]
maintainers = [
{name = "Pedro Rivero", email = "[email protected]"},
]
keywords = [
"quantum computing",
"quantum information science",
"qiskit",
]
readme = "README.md"
license = {file = "LICENSE.txt"}
classifiers = [
"Development Status :: 1 - Planning",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Physics",
]
dynamic = ["version", "description"]
requires-python = ">=3.8"
dependencies = [
"qiskit >= 1.0.0",
]
[project.optional-dependencies]
dev = [
"tox >= 4.12.1",
"pre-commit >= 3.6.1",
"commitizen >= 3.14.1",
]
test = [
"pytest >= 8.0.0",
"pytest-cov >= 4.1.0",
"pytest-randomly >= 3.15.0",
]
lint = [
"autoflake >= 2.2.1",
"black[jupyter] ~= 24.2.0",
"flake8 >= 7.0.0",
"isort >= 5.13.2",
"mypy >= 1.8.0",
"mypy-extensions >= 1.0.0",
"pylint >= 3.0.3",
]
docs = [
"jupyter-sphinx >= 0.5.3",
"nbsphinx >= 0.9.3",
"reno >= 4.0.0",
"sphinx-autodoc-typehints >= 2.0.0",
]
notebook = [
"notebook >= 7.1.0",
"jupyterlab >= 4.1.1",
# TEST
"nbqa >= 1.7.1",
"treon >= 0.1.4",
# QISKIT CORE
"qiskit[visualization] >= 1.0.0",
"qiskit-ibm-runtime >= 0.21.1",
# EXTRA
"circuit-knitting-toolbox >= 0.6.0",
"prototype-zne >= 1.3.1",
"mthree >= 2.6.3",
"pyscf >= 2.4.0"
]
[project.urls]
"Home" = "https://github.com/IBM-Quantum-Technical-Enablement"
"Documentation" = "https://github.com/IBM-Quantum-Technical-Enablement/quantum-enablement/tree/main/docs/"
"Repository" = "https://github.com/IBM-Quantum-Technical-Enablement/quantum-enablement/"
"Download" = "https://pypi.org/project/quantum-enablement/"
[tool.flit.module]
name = "quantum_enablement"
############################################################
## TOOLS
############################################################
[tool.black]
line-length = 100
exclude = '\.ipynb$'
extend-exclude = '.*/qiskit/.*'
[tool.autoflake]
remove-all-unused-imports = true