qgate 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.
- qgate-0.0.1/.gitignore +13 -0
- qgate-0.0.1/PKG-INFO +15 -0
- qgate-0.0.1/README.md +3 -0
- qgate-0.0.1/pyproject.toml +22 -0
- qgate-0.0.1/src/qgate/__init__.py +3 -0
qgate-0.0.1/.gitignore
ADDED
qgate-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: qgate
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Quantum trajectory filter — package coming soon.
|
|
5
|
+
Author: Ran Buchnik
|
|
6
|
+
License: LicenseRef-QGate-Source-Available-v1.2
|
|
7
|
+
Classifier: Development Status :: 1 - Planning
|
|
8
|
+
Classifier: License :: Other/Proprietary License
|
|
9
|
+
Classifier: Programming Language :: Python :: 3
|
|
10
|
+
Requires-Python: >=3.9
|
|
11
|
+
Description-Content-Type: text/markdown
|
|
12
|
+
|
|
13
|
+
# qgate
|
|
14
|
+
|
|
15
|
+
Quantum trajectory filter — package coming soon.
|
qgate-0.0.1/README.md
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "qgate"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "Quantum trajectory filter — package coming soon."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = { text = "LicenseRef-QGate-Source-Available-v1.2" }
|
|
11
|
+
requires-python = ">=3.9"
|
|
12
|
+
authors = [
|
|
13
|
+
{ name = "Ran Buchnik" },
|
|
14
|
+
]
|
|
15
|
+
classifiers = [
|
|
16
|
+
"Development Status :: 1 - Planning",
|
|
17
|
+
"License :: Other/Proprietary License",
|
|
18
|
+
"Programming Language :: Python :: 3",
|
|
19
|
+
]
|
|
20
|
+
|
|
21
|
+
[tool.hatch.build.targets.wheel]
|
|
22
|
+
packages = ["src/qgate"]
|