abom-cli 0.1.0__tar.gz → 0.1.1__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.
Files changed (40) hide show
  1. abom_cli-0.1.1/.gitignore +19 -0
  2. {abom_cli-0.1.0 → abom_cli-0.1.1}/PKG-INFO +3 -2
  3. {abom_cli-0.1.0 → abom_cli-0.1.1}/pyproject.toml +4 -3
  4. abom_cli-0.1.1/src/abom/__init__.py +3 -0
  5. {abom_cli-0.1.0 → abom_cli-0.1.1}/src/abom/scan.py +5 -1
  6. abom_cli-0.1.0/.gitignore +0 -14
  7. abom_cli-0.1.0/src/abom/__init__.py +0 -3
  8. {abom_cli-0.1.0 → abom_cli-0.1.1}/.env.example +0 -0
  9. {abom_cli-0.1.0 → abom_cli-0.1.1}/Dockerfile +0 -0
  10. {abom_cli-0.1.0 → abom_cli-0.1.1}/MVP_SPEC.md +0 -0
  11. {abom_cli-0.1.0 → abom_cli-0.1.1}/Makefile +0 -0
  12. {abom_cli-0.1.0 → abom_cli-0.1.1}/README.md +0 -0
  13. {abom_cli-0.1.0 → abom_cli-0.1.1}/charts/abom/Chart.yaml +0 -0
  14. {abom_cli-0.1.0 → abom_cli-0.1.1}/charts/abom/values.yaml +0 -0
  15. {abom_cli-0.1.0 → abom_cli-0.1.1}/demo/README.md +0 -0
  16. {abom_cli-0.1.0 → abom_cli-0.1.1}/demo/demo.py +0 -0
  17. {abom_cli-0.1.0 → abom_cli-0.1.1}/demo/sample_repo/tests.py +0 -0
  18. {abom_cli-0.1.0 → abom_cli-0.1.1}/demo/sample_repo/validator.py +0 -0
  19. {abom_cli-0.1.0 → abom_cli-0.1.1}/docker-compose.yml +0 -0
  20. {abom_cli-0.1.0 → abom_cli-0.1.1}/scripts/init_db.py +0 -0
  21. {abom_cli-0.1.0 → abom_cli-0.1.1}/src/abom/agents.py +0 -0
  22. {abom_cli-0.1.0 → abom_cli-0.1.1}/src/abom/api.py +0 -0
  23. {abom_cli-0.1.0 → abom_cli-0.1.1}/src/abom/audit.py +0 -0
  24. {abom_cli-0.1.0 → abom_cli-0.1.1}/src/abom/bom.py +0 -0
  25. {abom_cli-0.1.0 → abom_cli-0.1.1}/src/abom/cli.py +0 -0
  26. {abom_cli-0.1.0 → abom_cli-0.1.1}/src/abom/config.py +0 -0
  27. {abom_cli-0.1.0 → abom_cli-0.1.1}/src/abom/db.py +0 -0
  28. {abom_cli-0.1.0 → abom_cli-0.1.1}/src/abom/execution.py +0 -0
  29. {abom_cli-0.1.0 → abom_cli-0.1.1}/src/abom/models_router.py +0 -0
  30. {abom_cli-0.1.0 → abom_cli-0.1.1}/src/abom/orchestration.py +0 -0
  31. {abom_cli-0.1.0 → abom_cli-0.1.1}/src/abom/policy.py +0 -0
  32. {abom_cli-0.1.0 → abom_cli-0.1.1}/src/abom/schemas.py +0 -0
  33. {abom_cli-0.1.0 → abom_cli-0.1.1}/src/abom/sign.py +0 -0
  34. {abom_cli-0.1.0 → abom_cli-0.1.1}/tests/fixtures/sample-agent/agent.py +0 -0
  35. {abom_cli-0.1.0 → abom_cli-0.1.1}/tests/fixtures/sample-agent/mcp.json +0 -0
  36. {abom_cli-0.1.0 → abom_cli-0.1.1}/tests/fixtures/sample-agent/prompts/system.txt +0 -0
  37. {abom_cli-0.1.0 → abom_cli-0.1.1}/tests/fixtures/sample-agent/requirements.txt +0 -0
  38. {abom_cli-0.1.0 → abom_cli-0.1.1}/tests/test_audit_chain.py +0 -0
  39. {abom_cli-0.1.0 → abom_cli-0.1.1}/tests/test_scan.py +0 -0
  40. {abom_cli-0.1.0 → abom_cli-0.1.1}/tests/test_sign.py +0 -0
@@ -0,0 +1,19 @@
1
+ __pycache__/
2
+ *.pyc
3
+ .env
4
+ cli/demo/out/
5
+ .DS_Store
6
+
7
+ # build artifacts
8
+ dist/
9
+ build/
10
+ *.egg-info/
11
+ .abom/
12
+
13
+ # abom scan output (but keep the committed examples/ ABOMs)
14
+ /abom.json
15
+ cli/abom.json
16
+
17
+ # social demo renders (generated by vhs; upload, do not commit)
18
+ assets/demo.mp4
19
+ assets/demo.gif
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: abom-cli
3
- Version: 0.1.0
3
+ Version: 0.1.1
4
4
  Summary: ABOM — the Agent Bill of Materials. Scan, sign, and verify what your AI agents are made of.
5
5
  Project-URL: Homepage, https://abom.ai
6
6
  Project-URL: Repository, https://github.com/josephassiga/abom
@@ -14,8 +14,9 @@ Classifier: License :: OSI Approved :: Apache Software License
14
14
  Classifier: Programming Language :: Python :: 3 :: Only
15
15
  Classifier: Topic :: Security
16
16
  Classifier: Topic :: Software Development :: Quality Assurance
17
- Requires-Python: >=3.11
17
+ Requires-Python: >=3.10
18
18
  Requires-Dist: cryptography>=42.0
19
+ Requires-Dist: tomli>=2.0; python_version < '3.11'
19
20
  Requires-Dist: typer>=0.12
20
21
  Provides-Extra: dev
21
22
  Requires-Dist: build>=1.2; extra == 'dev'
@@ -1,9 +1,9 @@
1
1
  [project]
2
2
  name = "abom-cli"
3
- version = "0.1.0"
3
+ version = "0.1.1"
4
4
  description = "ABOM — the Agent Bill of Materials. Scan, sign, and verify what your AI agents are made of."
5
5
  readme = "README.md"
6
- requires-python = ">=3.11"
6
+ requires-python = ">=3.10"
7
7
  license = "Apache-2.0"
8
8
  authors = [{ name = "ABOM Contributors" }]
9
9
  keywords = ["agent", "ai", "sbom", "ml-bom", "ai-security", "provenance", "cyclonedx", "supply-chain", "llm"]
@@ -19,6 +19,7 @@ classifiers = [
19
19
  dependencies = [
20
20
  "typer>=0.12",
21
21
  "cryptography>=42.0",
22
+ "tomli>=2.0 ; python_version < '3.11'",
22
23
  ]
23
24
 
24
25
  [project.urls]
@@ -58,4 +59,4 @@ pythonpath = ["src"]
58
59
 
59
60
  [tool.ruff]
60
61
  line-length = 110
61
- target-version = "py311"
62
+ target-version = "py310"
@@ -0,0 +1,3 @@
1
+ """ABOM — the Agent Bill of Materials. Scan, sign, and verify AI agents."""
2
+
3
+ __version__ = "0.1.1"
@@ -10,9 +10,13 @@ from __future__ import annotations
10
10
  import hashlib
11
11
  import json
12
12
  import re
13
- import tomllib
14
13
  from pathlib import Path
15
14
 
15
+ try:
16
+ import tomllib # Python 3.11+
17
+ except ModuleNotFoundError: # Python 3.10
18
+ import tomli as tomllib
19
+
16
20
  # --- known signals -----------------------------------------------------------
17
21
  FRAMEWORKS = {
18
22
  "langchain": "LangChain", "langchain-core": "LangChain", "langgraph": "LangGraph",
abom_cli-0.1.0/.gitignore DELETED
@@ -1,14 +0,0 @@
1
- __pycache__/
2
- *.pyc
3
- .env
4
- cli/demo/out/
5
- .DS_Store
6
-
7
- # build artifacts
8
- dist/
9
- build/
10
- *.egg-info/
11
- .abom/
12
-
13
- # abom scan output
14
- abom.json
@@ -1,3 +0,0 @@
1
- """ABOM — production control plane for agentic AI (Step-1 MVP scaffold)."""
2
-
3
- __version__ = "0.1.0"
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes