hexaqueue-server 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.
Potentially problematic release.
This version of hexaqueue-server might be problematic. Click here for more details.
|
@@ -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,19 @@
|
|
|
1
|
+
Metadata-Version: 2.5
|
|
2
|
+
Name: hexaqueue-server
|
|
3
|
+
Version: 0.0.0
|
|
4
|
+
Summary: Hexaqueue Server - High-Availability Central Controller and Scheduler Engine
|
|
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-core>=0.3.0
|
|
11
|
+
Requires-Dist: hexastack-cqrs>=0.3.0
|
|
12
|
+
Requires-Dist: hexastack-db>=0.3.0
|
|
13
|
+
Requires-Dist: hexastack-events>=0.3.0
|
|
14
|
+
Requires-Dist: hexastack-fastapi>=0.3.0
|
|
15
|
+
Requires-Dist: hexastack-grpc>=0.3.0
|
|
16
|
+
Requires-Dist: hexastack-otel>=0.3.0
|
|
17
|
+
Description-Content-Type: text/markdown
|
|
18
|
+
|
|
19
|
+
# hexaqueue-server
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# hexaqueue-server
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "hexaqueue-server"
|
|
3
|
+
version = "0.0.0"
|
|
4
|
+
description = "Hexaqueue Server - High-Availability Central Controller and Scheduler Engine"
|
|
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-core>=0.3.0",
|
|
15
|
+
"hexastack-cqrs>=0.3.0",
|
|
16
|
+
"hexastack-db>=0.3.0",
|
|
17
|
+
"hexastack-events>=0.3.0",
|
|
18
|
+
"hexastack-fastapi>=0.3.0",
|
|
19
|
+
"hexastack-grpc>=0.3.0",
|
|
20
|
+
"hexastack-otel>=0.3.0",
|
|
21
|
+
]
|
|
22
|
+
|
|
23
|
+
[build-system]
|
|
24
|
+
requires = ["hatchling"]
|
|
25
|
+
build-backend = "hatchling.build"
|
|
26
|
+
|
|
27
|
+
[tool.uv.sources]
|
|
28
|
+
hexaqueue-core = { workspace = true }
|
|
File without changes
|