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 ADDED
@@ -0,0 +1,13 @@
1
+ # Python-generated files
2
+ __pycache__/
3
+ *.py[oc]
4
+ build/
5
+ dist/
6
+ wheels/
7
+ *.egg-info
8
+
9
+ # Secrets / local config
10
+ .secrets.json
11
+
12
+ # Virtual environments
13
+ .venv
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,3 @@
1
+ # qgate
2
+
3
+ Quantum trajectory filter — package coming soon.
@@ -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"]
@@ -0,0 +1,3 @@
1
+ """qgate — Quantum trajectory filter. Package coming soon."""
2
+
3
+ __version__ = "0.0.1"