This repository has been archived by the owner on Apr 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
95 lines (89 loc) · 2.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
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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "staged-primitives"
authors = [
{name = "Pedro Rivero", email = "[email protected]"},
]
maintainers = [
{name = "Pedro Rivero", email = "[email protected]"},
]
keywords = [
"quantum computing",
"quantum information science",
"qiskit",
"primitives",
]
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",
"Topic :: Scientific/Engineering :: Physics",
]
dynamic = ["version", "description"]
requires-python = ">=3.8"
dependencies = [
"qiskit-terra >= 0.22.2",
]
[project.optional-dependencies]
dev = [
"tox >= 4.4.6",
"pre-commit >= 2.19.0",
"commitizen >= 2.28.0",
]
test = [
"pytest >= 7.1.2",
"pytest-cov >= 3.0.0",
"pytest-randomly >= 3.12.0",
"qiskit-aer >= 0.11.0",
]
lint = [
"autoflake >= 1.7.6",
"black[jupyter] ~= 22.6.0",
"flake8 >= 4.0.1",
"isort >= 5.10.1",
"mypy >= 0.961",
"mypy-extensions >= 0.4.3",
"pylint >= 2.14.4",
]
docs = [
"jupyter-sphinx >= 0.3.2",
"nbsphinx >= 0.8.8",
"reno >= 3.5.0",
"sphinx-autodoc-typehints >= 1.17.0",
]
notebook = [
"jupyter >= 1.0.0",
"notebook >= 6.4.12",
"qiskit-terra[visualization] >= 0.22.2",
"qiskit-aer >= 0.11.0",
"nbqa >= 1.3.1",
"treon >= 0.1.3",
]
[project.urls]
"Home" = "https://qiskit-community.github.io/prototypes/"
"Documentation" = "https://github.com/Qiskit-Extensions/staged-primitives/tree/main/docs/"
"Repository" = "https://github.com/Qiskit-Extensions/staged-primitives/"
"Download" = "https://pypi.org/project/staged-primitives/"
[tool.flit.module]
name = "staged_primitives"
############################################################
## TOOLS
############################################################
[tool.black]
line-length = 100
exclude = '\.ipynb$'
extend-exclude = '.*/qiskit/.*'