kneo-dash 0.0.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.
- kneo_dash-0.0.0/PKG-INFO +17 -0
- kneo_dash-0.0.0/README.md +5 -0
- kneo_dash-0.0.0/pyproject.toml +22 -0
- kneo_dash-0.0.0/setup.cfg +4 -0
- kneo_dash-0.0.0/src/kneo_dash/__init__.py +3 -0
- kneo_dash-0.0.0/src/kneo_dash.egg-info/PKG-INFO +17 -0
- kneo_dash-0.0.0/src/kneo_dash.egg-info/SOURCES.txt +7 -0
- kneo_dash-0.0.0/src/kneo_dash.egg-info/dependency_links.txt +1 -0
- kneo_dash-0.0.0/src/kneo_dash.egg-info/top_level.txt +1 -0
kneo_dash-0.0.0/PKG-INFO
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: kneo-dash
|
|
3
|
+
Version: 0.0.0
|
|
4
|
+
Summary: Reserved package name for the Kneo Agent Dashboard. Placeholder release — not yet functional.
|
|
5
|
+
Author: Kneron, Inc.
|
|
6
|
+
License-Expression: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/kneo-agent/kneo-dash
|
|
8
|
+
Classifier: Development Status :: 1 - Planning
|
|
9
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
10
|
+
Requires-Python: >=3.12
|
|
11
|
+
Description-Content-Type: text/markdown
|
|
12
|
+
|
|
13
|
+
# kneo-dash
|
|
14
|
+
|
|
15
|
+
Reserved package name for the **Kneo Agent Dashboard**.
|
|
16
|
+
|
|
17
|
+
This is a placeholder release to reserve the name. It is not yet functional.
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=77", "wheel"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "kneo-dash"
|
|
7
|
+
version = "0.0.0"
|
|
8
|
+
description = "Reserved package name for the Kneo Agent Dashboard. Placeholder release — not yet functional."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = "MIT"
|
|
11
|
+
authors = [{ name = "Kneron, Inc." }]
|
|
12
|
+
requires-python = ">=3.12"
|
|
13
|
+
classifiers = [
|
|
14
|
+
"Development Status :: 1 - Planning",
|
|
15
|
+
"Programming Language :: Python :: 3.12",
|
|
16
|
+
]
|
|
17
|
+
|
|
18
|
+
[project.urls]
|
|
19
|
+
Homepage = "https://github.com/kneo-agent/kneo-dash"
|
|
20
|
+
|
|
21
|
+
[tool.setuptools.packages.find]
|
|
22
|
+
where = ["src"]
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: kneo-dash
|
|
3
|
+
Version: 0.0.0
|
|
4
|
+
Summary: Reserved package name for the Kneo Agent Dashboard. Placeholder release — not yet functional.
|
|
5
|
+
Author: Kneron, Inc.
|
|
6
|
+
License-Expression: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/kneo-agent/kneo-dash
|
|
8
|
+
Classifier: Development Status :: 1 - Planning
|
|
9
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
10
|
+
Requires-Python: >=3.12
|
|
11
|
+
Description-Content-Type: text/markdown
|
|
12
|
+
|
|
13
|
+
# kneo-dash
|
|
14
|
+
|
|
15
|
+
Reserved package name for the **Kneo Agent Dashboard**.
|
|
16
|
+
|
|
17
|
+
This is a placeholder release to reserve the name. It is not yet functional.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
kneo_dash
|