klystron-core 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.
- klystron_core-0.0.1/PKG-INFO +12 -0
- klystron_core-0.0.1/README.md +3 -0
- klystron_core-0.0.1/klystron_core.egg-info/PKG-INFO +12 -0
- klystron_core-0.0.1/klystron_core.egg-info/SOURCES.txt +7 -0
- klystron_core-0.0.1/klystron_core.egg-info/dependency_links.txt +1 -0
- klystron_core-0.0.1/klystron_core.egg-info/top_level.txt +1 -0
- klystron_core-0.0.1/klystron_core.py +1 -0
- klystron_core-0.0.1/pyproject.toml +13 -0
- klystron_core-0.0.1/setup.cfg +4 -0
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: klystron-core
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Reserved name for Klystron (HSTLRlabs). Placeholder; real release to follow.
|
|
5
|
+
Author: HSTLRlabs
|
|
6
|
+
License: MIT
|
|
7
|
+
Requires-Python: >=3.9
|
|
8
|
+
Description-Content-Type: text/markdown
|
|
9
|
+
|
|
10
|
+
# klystron-core
|
|
11
|
+
|
|
12
|
+
Reserved for **Klystron** (HSTLRlabs). Placeholder to hold the name; the real package is on the way.
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: klystron-core
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Reserved name for Klystron (HSTLRlabs). Placeholder; real release to follow.
|
|
5
|
+
Author: HSTLRlabs
|
|
6
|
+
License: MIT
|
|
7
|
+
Requires-Python: >=3.9
|
|
8
|
+
Description-Content-Type: text/markdown
|
|
9
|
+
|
|
10
|
+
# klystron-core
|
|
11
|
+
|
|
12
|
+
Reserved for **Klystron** (HSTLRlabs). Placeholder to hold the name; the real package is on the way.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
klystron_core
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"""Reserved placeholder for Klystron (HSTLRlabs)."""
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=61"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
[project]
|
|
5
|
+
name = "klystron-core"
|
|
6
|
+
version = "0.0.1"
|
|
7
|
+
description = "Reserved name for Klystron (HSTLRlabs). Placeholder; real release to follow."
|
|
8
|
+
readme = "README.md"
|
|
9
|
+
requires-python = ">=3.9"
|
|
10
|
+
license = {text = "MIT"}
|
|
11
|
+
authors = [{name = "HSTLRlabs"}]
|
|
12
|
+
[tool.setuptools]
|
|
13
|
+
py-modules = ["klystron_core"]
|