-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
45 lines (41 loc) · 1.06 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
[project]
name = "q8s-qpu-proxy"
version = "0.1.0"
description = "Qubernetes proxy service for remote QPUs"
authors = [{ name = "Vlad Stirbu", email = "[email protected]" }]
readme = "README.md"
license = { file = "LICENSE" }
keywords = ["quantum", "qpu", "qiskit"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
requires-python = ">= 3.8"
dependencies = ["fastapi[standard]==0.115.5", "qiskit==1.1", "qiskit-iqm==15.4"]
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project.optional-dependencies]
development = ["pytest", "black"]
# Needed by the q8s backend to interact with the proxy service
# should be moved to a separate package
# qiskit_backend = ["httpx==0.27.2"]
[tool.black]
line-length = 120
target-version = ['py37']
include = '\.pyi?$'
exclude = '''
(
/(
\.git
| \.mypy_cache
| \.pytest_cache
| htmlcov
| build
| pybind11
)/
)
'''