hexaqueue-github-runner 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,11 @@
|
|
|
1
|
+
Metadata-Version: 2.5
|
|
2
|
+
Name: hexaqueue-github-runner
|
|
3
|
+
Version: 0.0.0
|
|
4
|
+
Summary: Hexaqueue GitHub Runner - Dynamic Self-Hosted GitHub Actions Autoscaler
|
|
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
|
+
Description-Content-Type: text/markdown
|
|
10
|
+
|
|
11
|
+
# hexaqueue-github-runner
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# hexaqueue-github-runner
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "hexaqueue-github-runner"
|
|
3
|
+
version = "0.0.0"
|
|
4
|
+
description = "Hexaqueue GitHub Runner - Dynamic Self-Hosted GitHub Actions Autoscaler"
|
|
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
|
+
]
|
|
14
|
+
|
|
15
|
+
[build-system]
|
|
16
|
+
requires = ["hatchling"]
|
|
17
|
+
build-backend = "hatchling.build"
|
|
18
|
+
|
|
19
|
+
[tool.uv.sources]
|
|
20
|
+
hexaqueue-core = { workspace = true }
|
|
File without changes
|