-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
80 lines (69 loc) · 2.12 KB
/
pyproject.toml
File metadata and controls
80 lines (69 loc) · 2.12 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
[project]
name = "qi-compute-api-client"
version = "0.60.0"
description = "An API client for the Compute Job Manager of Quantum Inspire."
authors = [{ name = "Quantum Inspire", email = "support@quantum-inspire.eu" }]
requires-python = ">=3.10,<3.14"
readme = "README.md"
license = "Apache-2.0"
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"License :: OSI Approved :: Apache Software License",
]
dependencies = [
"aiohttp==3.13.5",
"pydantic==2.12.5",
"python-dateutil==2.9.0.post0",
"urllib3==2.6.3",
"requests>=2.32.0",
"typing-extensions==4.15.0",
"aiohttp-retry==2.9.1",
]
[project.urls]
Repository = "https://github.com/QuTech-Delft/compute-api-client"
[dependency-groups]
dev = [
"pytest==9.0.3",
"coverage[toml]>=7.6.10,<8",
"pytest-cov==7.1.0",
"mypy==1.20.2",
"docformatter==1.7.7",
"pytest-mock==3.15.1",
"black==26.3.1",
"pytest-asyncio==1.3.0",
"ruff==0.15.11",
"deptry==0.25.1",
"types-requests==2.33.0.20260408",
"responses==0.26.0",
"refurb==2.3.1; python_version >= '3.10'",
]
[tool.hatch.build.targets.sdist]
include = ["compute_api_client", "qi2_shared"]
exclude = ["compute_api_client/test", "tests"]
[tool.hatch.build.targets.wheel]
include = ["compute_api_client", "qi2_shared"]
exclude = ["compute_api_client/test", "tests"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.pytest.ini_options]
addopts = "-v --cov --cov-report term-missing:skip-covered --cov-report xml --junitxml=report.xml"
asyncio_mode = "auto"
testpaths = "tests/*"
[tool.coverage.run]
branch = true
source = ["qi2_shared"]
omit = ["compute_api_client/*"]
[tool.mypy]
exclude = ["compute_api_client/*"]
[tool.deptry]
exclude = ["compute_api_client/*", "tests/*", ".venv/*"]
[tool.deptry.per_rule_ignores]
DEP002 = ["aiohttp", "python-dateutil", "urllib3", "aiohttp-retry"]
[tool.ruff]
exclude = ["compute_api_client/*"]