-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpyproject.toml
75 lines (68 loc) · 1.96 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
[tool.poetry]
name = "qiskit-rigetti"
version = "0.4.7"
description = "Provider for running Qiskit circuits on Rigetti QPUs and simulators."
authors = ["Rigetti Computing"]
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/rigetti/qiskit-rigetti"
documentation = "https://qiskit-rigetti.readthedocs.io"
keywords = ["Qiskit", "Quil", "Rigetti", "pyQuil", "Quantum"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Programming Language :: Other",
"Topic :: Scientific/Engineering :: Physics",
"Typing :: Typed"
]
[tool.poetry.dependencies]
python = ">=3.8,<3.12"
qiskit = ">=0.38.0,<1.0.0"
pyquil = ">=4.0.0,<5.0.0"
numpy = "^1.23.3"
importlib_metadata = {version = "*", python = "<3.8"}
sphinx = { version = "^6.1.0", optional = true }
sphinx-autoapi = { version = "^3.0.0", optional = true }
furo = { version = "*", optional = true }
myst-parser = { version = "^0.19.2", optional = true }
sphinx-autobuild = { version = "^2021.3.14", optional = true }
nbsphinx = { version = "^0.8.6", optional = true }
ipython = {version = "^7.25.0", optional = true}
[tool.poetry.dev-dependencies]
black = {version = "^22.1.0", extras = ["jupyter"]}
flake8 = "^5.0.4"
pytest = "^6.2.2"
pytest-cov = "^2.11.1"
pytest-httpx = "^0.9"
mypy = "0.982"
pytest-mock = "^3.6.1"
pip-licenses = "^3.5.1"
[tool.poetry.extras]
docs = ["sphinx", "sphinx-autoapi", "furo", "myst-parser", "sphinx-autobuild", "nbsphinx", "ipython"]
[tool.black]
line-length = 120
target-version = ['py38']
include = '\.pyi?$'
exclude = '''
(
/(
\.eggs # black-default
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
)
'''
[tool.dephell.main]
from = {format = "poetry", path = "pyproject.toml"}
to = {format = "setuppy", path = "setup.py"}
[build-system]
requires = ["poetry_core>=1.0.0"]
build-backend = "poetry.core.masonry.api"