qcsc-prefect 0.1.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- qcsc_prefect-0.1.0/PKG-INFO +34 -0
- qcsc_prefect-0.1.0/README.md +9 -0
- qcsc_prefect-0.1.0/pyproject.toml +44 -0
- qcsc_prefect-0.1.0/qcsc_prefect.egg-info/PKG-INFO +34 -0
- qcsc_prefect-0.1.0/qcsc_prefect.egg-info/SOURCES.txt +7 -0
- qcsc_prefect-0.1.0/qcsc_prefect.egg-info/dependency_links.txt +1 -0
- qcsc_prefect-0.1.0/qcsc_prefect.egg-info/requires.txt +14 -0
- qcsc_prefect-0.1.0/qcsc_prefect.egg-info/top_level.txt +1 -0
- qcsc_prefect-0.1.0/setup.cfg +4 -0
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: qcsc-prefect
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Meta-package for installing QCSC Prefect core packages
|
|
5
|
+
Author: QCSC Prefect Contributors
|
|
6
|
+
Maintainer: QCSC Prefect Maintainers
|
|
7
|
+
License-Expression: Apache-2.0
|
|
8
|
+
Project-URL: Homepage, https://github.com/qiskit-community/qcsc-prefect
|
|
9
|
+
Project-URL: Repository, https://github.com/qiskit-community/qcsc-prefect
|
|
10
|
+
Project-URL: Documentation, https://qiskit-community.github.io/qcsc-prefect/
|
|
11
|
+
Project-URL: Issues, https://github.com/qiskit-community/qcsc-prefect/issues
|
|
12
|
+
Requires-Python: >=3.10
|
|
13
|
+
Description-Content-Type: text/markdown
|
|
14
|
+
Requires-Dist: qcsc-prefect-adapters==0.1.0
|
|
15
|
+
Requires-Dist: qcsc-prefect-blocks==0.1.0
|
|
16
|
+
Requires-Dist: qcsc-prefect-core==0.1.0
|
|
17
|
+
Requires-Dist: qcsc-prefect-executor==0.1.0
|
|
18
|
+
Provides-Extra: qiskit
|
|
19
|
+
Requires-Dist: qcsc-prefect-qiskit==0.1.0; extra == "qiskit"
|
|
20
|
+
Provides-Extra: dice
|
|
21
|
+
Requires-Dist: qcsc-prefect-dice==0.1.0; extra == "dice"
|
|
22
|
+
Provides-Extra: all
|
|
23
|
+
Requires-Dist: qcsc-prefect-dice==0.1.0; extra == "all"
|
|
24
|
+
Requires-Dist: qcsc-prefect-qiskit==0.1.0; extra == "all"
|
|
25
|
+
|
|
26
|
+
# QCSC Prefect
|
|
27
|
+
|
|
28
|
+
Meta-package that installs the core QCSC Prefect packages.
|
|
29
|
+
|
|
30
|
+
Optional extras:
|
|
31
|
+
|
|
32
|
+
- `qcsc-prefect[qiskit]` installs the native Qiskit Runtime integration.
|
|
33
|
+
- `qcsc-prefect[dice]` installs the Python-side DICE integration.
|
|
34
|
+
- `qcsc-prefect[all]` installs all optional QCSC Prefect integrations.
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
# QCSC Prefect
|
|
2
|
+
|
|
3
|
+
Meta-package that installs the core QCSC Prefect packages.
|
|
4
|
+
|
|
5
|
+
Optional extras:
|
|
6
|
+
|
|
7
|
+
- `qcsc-prefect[qiskit]` installs the native Qiskit Runtime integration.
|
|
8
|
+
- `qcsc-prefect[dice]` installs the Python-side DICE integration.
|
|
9
|
+
- `qcsc-prefect[all]` installs all optional QCSC Prefect integrations.
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=77.0.0", "wheel"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "qcsc-prefect"
|
|
7
|
+
version = "0.1.0"
|
|
8
|
+
description = "Meta-package for installing QCSC Prefect core packages"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.10"
|
|
11
|
+
license = "Apache-2.0"
|
|
12
|
+
authors = [
|
|
13
|
+
{ name = "QCSC Prefect Contributors" },
|
|
14
|
+
]
|
|
15
|
+
maintainers = [
|
|
16
|
+
{ name = "QCSC Prefect Maintainers" },
|
|
17
|
+
]
|
|
18
|
+
dependencies = [
|
|
19
|
+
"qcsc-prefect-adapters==0.1.0",
|
|
20
|
+
"qcsc-prefect-blocks==0.1.0",
|
|
21
|
+
"qcsc-prefect-core==0.1.0",
|
|
22
|
+
"qcsc-prefect-executor==0.1.0",
|
|
23
|
+
]
|
|
24
|
+
|
|
25
|
+
[project.optional-dependencies]
|
|
26
|
+
qiskit = [
|
|
27
|
+
"qcsc-prefect-qiskit==0.1.0",
|
|
28
|
+
]
|
|
29
|
+
dice = [
|
|
30
|
+
"qcsc-prefect-dice==0.1.0",
|
|
31
|
+
]
|
|
32
|
+
all = [
|
|
33
|
+
"qcsc-prefect-dice==0.1.0",
|
|
34
|
+
"qcsc-prefect-qiskit==0.1.0",
|
|
35
|
+
]
|
|
36
|
+
|
|
37
|
+
[project.urls]
|
|
38
|
+
Homepage = "https://github.com/qiskit-community/qcsc-prefect"
|
|
39
|
+
Repository = "https://github.com/qiskit-community/qcsc-prefect"
|
|
40
|
+
Documentation = "https://qiskit-community.github.io/qcsc-prefect/"
|
|
41
|
+
Issues = "https://github.com/qiskit-community/qcsc-prefect/issues"
|
|
42
|
+
|
|
43
|
+
[tool.setuptools]
|
|
44
|
+
packages = []
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: qcsc-prefect
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Meta-package for installing QCSC Prefect core packages
|
|
5
|
+
Author: QCSC Prefect Contributors
|
|
6
|
+
Maintainer: QCSC Prefect Maintainers
|
|
7
|
+
License-Expression: Apache-2.0
|
|
8
|
+
Project-URL: Homepage, https://github.com/qiskit-community/qcsc-prefect
|
|
9
|
+
Project-URL: Repository, https://github.com/qiskit-community/qcsc-prefect
|
|
10
|
+
Project-URL: Documentation, https://qiskit-community.github.io/qcsc-prefect/
|
|
11
|
+
Project-URL: Issues, https://github.com/qiskit-community/qcsc-prefect/issues
|
|
12
|
+
Requires-Python: >=3.10
|
|
13
|
+
Description-Content-Type: text/markdown
|
|
14
|
+
Requires-Dist: qcsc-prefect-adapters==0.1.0
|
|
15
|
+
Requires-Dist: qcsc-prefect-blocks==0.1.0
|
|
16
|
+
Requires-Dist: qcsc-prefect-core==0.1.0
|
|
17
|
+
Requires-Dist: qcsc-prefect-executor==0.1.0
|
|
18
|
+
Provides-Extra: qiskit
|
|
19
|
+
Requires-Dist: qcsc-prefect-qiskit==0.1.0; extra == "qiskit"
|
|
20
|
+
Provides-Extra: dice
|
|
21
|
+
Requires-Dist: qcsc-prefect-dice==0.1.0; extra == "dice"
|
|
22
|
+
Provides-Extra: all
|
|
23
|
+
Requires-Dist: qcsc-prefect-dice==0.1.0; extra == "all"
|
|
24
|
+
Requires-Dist: qcsc-prefect-qiskit==0.1.0; extra == "all"
|
|
25
|
+
|
|
26
|
+
# QCSC Prefect
|
|
27
|
+
|
|
28
|
+
Meta-package that installs the core QCSC Prefect packages.
|
|
29
|
+
|
|
30
|
+
Optional extras:
|
|
31
|
+
|
|
32
|
+
- `qcsc-prefect[qiskit]` installs the native Qiskit Runtime integration.
|
|
33
|
+
- `qcsc-prefect[dice]` installs the Python-side DICE integration.
|
|
34
|
+
- `qcsc-prefect[all]` installs all optional QCSC Prefect integrations.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
qcsc-prefect-adapters==0.1.0
|
|
2
|
+
qcsc-prefect-blocks==0.1.0
|
|
3
|
+
qcsc-prefect-core==0.1.0
|
|
4
|
+
qcsc-prefect-executor==0.1.0
|
|
5
|
+
|
|
6
|
+
[all]
|
|
7
|
+
qcsc-prefect-dice==0.1.0
|
|
8
|
+
qcsc-prefect-qiskit==0.1.0
|
|
9
|
+
|
|
10
|
+
[dice]
|
|
11
|
+
qcsc-prefect-dice==0.1.0
|
|
12
|
+
|
|
13
|
+
[qiskit]
|
|
14
|
+
qcsc-prefect-qiskit==0.1.0
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|