-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
59 lines (49 loc) · 1.12 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
[tool.poetry]
name = "qcs-api-client"
version = "0.25.5"
description = "A client library for accessing the Rigetti QCS API"
license = "Apache-2.0"
repository = "https://github.com/rigetti/qcs-api-client-python"
documentation = "https://qcs-api-client-python.readthedocs.io/en/latest/index.html"
authors = []
readme = "README.md"
packages = [{ include = "qcs_api_client" }]
include = ["CHANGELOG.md", "qcs_api_client/py.typed"]
[tool.poetry.dependencies]
attrs = ">=21.3.0"
httpx = ">=0.23.0,<1.0"
iso8601 = "^1.0.2"
pydantic = "^2.6.3"
python = ">=3.8,<4.0"
python-dateutil = "^2.8.1"
rfc3339 = "^6.2"
toml = "^0.10.2"
PyJWT = "^2.4.0"
pydantic-settings = "^2.2.1"
tenacity = "^8.3.0"
[tool.poetry.dev-dependencies]
black = "^24.2.0"
click = "8.0.2"
flake8 = "^3.8.4"
pytest = "^6.1.2"
respx = "^0.20.0"
pytest-asyncio = "^0.14.0"
[tool.black]
line-length = 120
target_version = ['py37', 'py38']
exclude = '''
(
/(
| \.git
| \.venv
| \.mypy_cache
)/
)
'''
[tool.isort]
line_length = 120
multi_line_output = 3
include_trailing_comma = true
[build-system]
requires = ["poetry>=1.0"]
build-backend = "poetry.masonry.api"