qubithub 0.0.1__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.
- qubithub-0.0.1/PKG-INFO +20 -0
- qubithub-0.0.1/README.md +7 -0
- qubithub-0.0.1/pyproject.toml +22 -0
- qubithub-0.0.1/src/qubithub/__init__.py +3 -0
- qubithub-0.0.1/uv.lock +8 -0
qubithub-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: qubithub
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: QubitHub — developer infrastructure for quantum computing. This package is a namespace placeholder.
|
|
5
|
+
Project-URL: Homepage, https://qubithub.co
|
|
6
|
+
Author-email: Quantputation <hi@qubithub.co>
|
|
7
|
+
License-Expression: MIT
|
|
8
|
+
Classifier: Development Status :: 1 - Planning
|
|
9
|
+
Classifier: Programming Language :: Python :: 3
|
|
10
|
+
Classifier: Topic :: Scientific/Engineering :: Physics
|
|
11
|
+
Requires-Python: >=3.10
|
|
12
|
+
Description-Content-Type: text/markdown
|
|
13
|
+
|
|
14
|
+
# QubitHub
|
|
15
|
+
|
|
16
|
+
Developer infrastructure for quantum computing.
|
|
17
|
+
|
|
18
|
+
**This package is a namespace placeholder.** The actual SDK will be published as [`qubithub-sdk`](https://pypi.org/project/qubithub-sdk/).
|
|
19
|
+
|
|
20
|
+
Visit [qubithub.co](https://qubithub.co) for more information.
|
qubithub-0.0.1/README.md
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
# QubitHub
|
|
2
|
+
|
|
3
|
+
Developer infrastructure for quantum computing.
|
|
4
|
+
|
|
5
|
+
**This package is a namespace placeholder.** The actual SDK will be published as [`qubithub-sdk`](https://pypi.org/project/qubithub-sdk/).
|
|
6
|
+
|
|
7
|
+
Visit [qubithub.co](https://qubithub.co) for more information.
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "qubithub"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "QubitHub — developer infrastructure for quantum computing. This package is a namespace placeholder."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = "MIT"
|
|
11
|
+
requires-python = ">=3.10"
|
|
12
|
+
authors = [
|
|
13
|
+
{ name = "Quantputation", email = "hi@qubithub.co" }
|
|
14
|
+
]
|
|
15
|
+
classifiers = [
|
|
16
|
+
"Development Status :: 1 - Planning",
|
|
17
|
+
"Programming Language :: Python :: 3",
|
|
18
|
+
"Topic :: Scientific/Engineering :: Physics",
|
|
19
|
+
]
|
|
20
|
+
|
|
21
|
+
[project.urls]
|
|
22
|
+
Homepage = "https://qubithub.co"
|