hexaqueue-dashboard 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.
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
# Byte-compiled / optimized / DLL files
|
|
2
|
+
__pycache__/
|
|
3
|
+
*.py[cod]
|
|
4
|
+
*$py.class
|
|
5
|
+
|
|
6
|
+
# Caches and Environments
|
|
7
|
+
.venv/
|
|
8
|
+
env/
|
|
9
|
+
venv/
|
|
10
|
+
.cache/
|
|
11
|
+
.pytest_cache/
|
|
12
|
+
.ruff_cache/
|
|
13
|
+
.mypy_cache/
|
|
14
|
+
.ty_cache/
|
|
15
|
+
.hypothesis/
|
|
16
|
+
.import_linter_cache/
|
|
17
|
+
.mutmut-cache
|
|
18
|
+
.ropeproject/
|
|
19
|
+
|
|
20
|
+
# Test & Coverage
|
|
21
|
+
.coverage
|
|
22
|
+
.coverage.*
|
|
23
|
+
htmlcov/
|
|
24
|
+
nosetests.xml
|
|
25
|
+
coverage.xml
|
|
26
|
+
junit.xml
|
|
27
|
+
*.xml
|
|
28
|
+
*.cover
|
|
29
|
+
*.mutmut-cache
|
|
30
|
+
|
|
31
|
+
# Build & Packaging
|
|
32
|
+
build/
|
|
33
|
+
dist/
|
|
34
|
+
*.egg-info/
|
|
35
|
+
*.egg
|
|
36
|
+
.eggs/
|
|
37
|
+
|
|
38
|
+
# Database files & Local State
|
|
39
|
+
*.db*
|
|
40
|
+
*.sqlite
|
|
41
|
+
*.sqlite3
|
|
42
|
+
logs/
|
|
43
|
+
*.log
|
|
44
|
+
|
|
45
|
+
# OS Specific
|
|
46
|
+
.DS_Store
|
|
47
|
+
Thumbs.db
|
|
48
|
+
site/
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
Metadata-Version: 2.5
|
|
2
|
+
Name: hexaqueue-dashboard
|
|
3
|
+
Version: 0.0.0
|
|
4
|
+
Summary: Hexaqueue Dashboard - Modern web interface, cluster visualizer, and operator console
|
|
5
|
+
Author-email: Richard West <dopplereffect.us@gmail.com>
|
|
6
|
+
License-Expression: Apache-2.0
|
|
7
|
+
Requires-Python: >=3.13
|
|
8
|
+
Requires-Dist: hexaqueue-core
|
|
9
|
+
Requires-Dist: hexastack-auth>=0.3.0
|
|
10
|
+
Requires-Dist: hexastack-fastapi>=0.3.0
|
|
11
|
+
Requires-Dist: hexastack-grpc>=0.3.0
|
|
12
|
+
Description-Content-Type: text/markdown
|
|
13
|
+
|
|
14
|
+
# hexaqueue-dashboard (Web Interface & Operator Console)
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# hexaqueue-dashboard (Web Interface & Operator Console)
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "hexaqueue-dashboard"
|
|
3
|
+
version = "0.0.0"
|
|
4
|
+
description = "Hexaqueue Dashboard - Modern web interface, cluster visualizer, and operator console"
|
|
5
|
+
readme = "README.md"
|
|
6
|
+
license = "Apache-2.0"
|
|
7
|
+
authors = [
|
|
8
|
+
{ name = "Richard West", email = "dopplereffect.us@gmail.com" }
|
|
9
|
+
]
|
|
10
|
+
requires-python = ">=3.13"
|
|
11
|
+
dependencies = [
|
|
12
|
+
"hexaqueue-core",
|
|
13
|
+
"hexastack-auth>=0.3.0",
|
|
14
|
+
"hexastack-fastapi>=0.3.0",
|
|
15
|
+
"hexastack-grpc>=0.3.0",
|
|
16
|
+
]
|
|
17
|
+
|
|
18
|
+
[build-system]
|
|
19
|
+
requires = ["hatchling"]
|
|
20
|
+
build-backend = "hatchling.build"
|
|
21
|
+
|
|
22
|
+
[tool.uv.sources]
|
|
23
|
+
hexaqueue-core = { workspace = true }
|
|
File without changes
|