hexaqueue-scanner 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,15 @@
|
|
|
1
|
+
Metadata-Version: 2.5
|
|
2
|
+
Name: hexaqueue-scanner
|
|
3
|
+
Version: 0.0.0
|
|
4
|
+
Summary: Hexaqueue Scanner - Malware scanning, antivirus verification, and artifact quarantine daemon
|
|
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-events>=0.3.0
|
|
12
|
+
Requires-Dist: hexastack-logging>=0.3.0
|
|
13
|
+
Description-Content-Type: text/markdown
|
|
14
|
+
|
|
15
|
+
# hexaqueue-scanner
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# hexaqueue-scanner
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "hexaqueue-scanner"
|
|
3
|
+
version = "0.0.0"
|
|
4
|
+
description = "Hexaqueue Scanner - Malware scanning, antivirus verification, and artifact quarantine daemon"
|
|
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-events>=0.3.0",
|
|
16
|
+
"hexastack-logging>=0.3.0",
|
|
17
|
+
]
|
|
18
|
+
|
|
19
|
+
[build-system]
|
|
20
|
+
requires = ["hatchling"]
|
|
21
|
+
build-backend = "hatchling.build"
|
|
22
|
+
|
|
23
|
+
[tool.uv.sources]
|
|
24
|
+
hexaqueue-core = { workspace = true }
|
|
File without changes
|