-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
60 lines (52 loc) · 1.48 KB
/
Copy pathpyproject.toml
File metadata and controls
60 lines (52 loc) · 1.48 KB
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
[project]
name = "qcs_api_client"
version = "0.27.8"
description = "A client library for accessing Rigetti QCS API"
include = ["qcs_api_client/py.typed"]
authors = [{ name = "Rigetti QPU Software", email = "qpu-software@rigetti.com" }]
readme = "README.md"
requires-python = ">=3.10,<4.0"
license = "Apache-2.0"
license-files = ["LICENSE"]
dependencies = [
"attrs (>=25.4.0,<26.0.0)",
"httpx (>=0.28.1,<0.29.0)",
"pydantic (>=2.10.6,<3.0.0)",
"pydantic-core (>=2.27.2,<3.0.0)",
"pydantic-settings (>=2.8.1,<3.0.0)",
"pyjwt (>=2.12.1,<3.0.0)",
"python-dateutil (>=2.9.0.post0,<3.0.0)",
"qcs-api-client-common (>=0.17.5,<0.19.0)",
"rfc3339 (>=6.2,<7.0)",
"tenacity (>=9.1.4,<10.0.0)",
"toml (>=0.10.2,<0.11.0)",
]
[project.urls]
Homepage = "https://docs.api.qcs.rigetti.com/"
Documentation = "https://qcs-api-client-python.readthedocs.io/"
Repository = "https://github.com/rigetti/qcs-api-client-python/"
[dependency-groups]
dev = [
"pytest (>=9.0.2,<10.0.0)",
"respx (>=0.22.0,<0.23.0)",
"pytest-asyncio (>=1.3.0,<2.0.0)",
"ruff (>=0.15.6,<0.16.0)"
]
docs = [
"sphinx (>=8.1.3)",
"sphinx-autoapi (>=3.8.1,<4.0.0)",
"furo (>=2025.12.19,<2026.0.0)",
"myst-parser (>=4.0.1)"
]
[tool.uv.build-backend]
module-name = "qcs_api_client"
module-root = ""
[tool.uv]
default-groups = []
[build-system]
requires = ["uv_build>=0.12.7,<0.13"]
build-backend = "uv_build"
[tool.ruff]
line-length = 120
[tool.ruff.lint]
select = ["F", "I", "UP"]