-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
154 lines (133 loc) · 3.85 KB
/
Copy pathpyproject.toml
File metadata and controls
154 lines (133 loc) · 3.85 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
[build-system]
requires = ["hatchling>=1.26"]
build-backend = "hatchling.build"
[project]
name = "devqubit"
version = "0.1.12"
description = "Quantum experiment tracking library"
readme = "README.md"
license = "Apache-2.0"
license-files = ["LICENSE*"]
requires-python = ">=3.11,<3.14"
authors = [
{ name = "Mateusz Papierz", email = "m2papierz@gmail.com" }
]
keywords = ["quantum", "experiment-tracking"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering",
]
dependencies = [
"devqubit-engine>=0.1.12,<0.2.0",
]
[project.urls]
Repository = "https://github.com/devqubit-labs/devqubit"
Issues = "https://github.com/devqubit-labs/devqubit/issues"
Documentation = "https://devqubit.readthedocs.io"
[project.optional-dependencies]
# Remote storage dependencies
s3 = ["devqubit-engine[s3]>=0.1.12,<0.2.0"]
gcs = ["devqubit-engine[gcs]>=0.1.12,<0.2.0"]
# SDKs/providers dependencies
qiskit = ["devqubit-qiskit>=0.1.12,<0.2.0"]
qiskit-runtime = ["devqubit-qiskit-runtime>=0.1.12,<0.2.0"]
pennylane = ["devqubit-pennylane>=0.1.12,<0.2.0"]
cirq = ["devqubit-cirq>=0.1.12,<0.2.0"]
cudaq = ["devqubit-cudaq>=0.1.12,<0.2.0"]
braket = ["devqubit-braket>=0.1.12,<0.2.0"]
all = [
"devqubit-qiskit>=0.1.12,<0.2.0",
"devqubit-qiskit-runtime>=0.1.12,<0.2.0",
"devqubit-pennylane>=0.1.12,<0.2.0",
"devqubit-cirq>=0.1.12,<0.2.0",
"devqubit-cudaq>=0.1.12,<0.2.0",
"devqubit-braket>=0.1.12,<0.2.0",
]
# Local UI
ui = ["devqubit-ui>=0.1.12,<0.2.0"]
[project.scripts]
devqubit = "devqubit.cli:main"
[dependency-groups]
dev = [
"black[jupyter]>=25.12.0",
"ipykernel>=7.1.0",
"isort>=7.0.0",
"pandas>=2.3.3",
"pre-commit>=4.5.1",
"pytest>=9.0.2",
"responses>=0.25.8",
"ruff>=0.14.9",
"towncrier>=25.8.0",
]
docs = [
"myst-parser>=4.0.1",
"sphinx>=8.2.3",
"sphinx-rtd-theme>=3.0.2",
"sphinxcontrib-mermaid>=2.0.0,<3.0.0",
]
[tool.hatch.build.targets.wheel]
packages = ["src/devqubit"]
[tool.uv.workspace]
members = [
"packages/devqubit-engine",
"packages/devqubit-qiskit",
"packages/devqubit-qiskit-runtime",
"packages/devqubit-pennylane",
"packages/devqubit-cirq",
"packages/devqubit-cudaq",
"packages/devqubit-braket",
"packages/devqubit-ui",
]
[tool.uv.sources]
devqubit-engine = { workspace = true }
devqubit-qiskit = { workspace = true }
devqubit-qiskit-runtime = { workspace = true }
devqubit-pennylane = { workspace = true }
devqubit-cirq = { workspace = true }
devqubit-braket = { workspace = true }
devqubit-ui = { workspace = true }
devqubit-cudaq = { workspace = true }
[[tool.uv.index]]
name = "pypi"
url = "https://pypi.org/simple/"
publish-url = "https://upload.pypi.org/legacy/"
[[tool.uv.index]]
name = "testpypi"
url = "https://test.pypi.org/simple/"
publish-url = "https://test.pypi.org/legacy/"
explicit = true
[tool.pytest.ini_options]
testpaths = ["tests/", "packages/*/tests"]
python_files = ["test_*.py"]
python_functions = ["test_*"]
addopts = ["--import-mode=importlib"]
filterwarnings = [
# Silence Braket docstring escape warnings (3rd-party)
"ignore:invalid escape sequence.*:SyntaxWarning:braket\\..*",
# Silence the IBMFractionalTranslationPlugin deprecation warning (3rd-party)
"ignore:.*IBMFractionalTranslationPlugin.*:DeprecationWarning:stevedore\\..*",
]
[tool.isort]
src_paths = [
"src/",
"packages/",
"examples/",
"tools/",
]
profile = "black"
line_length = 88
lines_after_imports = 2
[tool.black]
line-length = 88
target-version = ["py311"]
[tool.ruff]
line-length = 88
target-version = "py311"