deployproof 0.1.0__tar.gz → 0.1.2__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 (33) hide show
  1. {deployproof-0.1.0/src/deployproof.egg-info → deployproof-0.1.2}/PKG-INFO +5 -8
  2. {deployproof-0.1.0 → deployproof-0.1.2}/README.md +4 -7
  3. {deployproof-0.1.0 → deployproof-0.1.2}/pyproject.toml +1 -1
  4. deployproof-0.1.2/src/deployproof/__init__.py +2 -0
  5. {deployproof-0.1.0 → deployproof-0.1.2}/src/deployproof/dependencies.py +1 -1
  6. {deployproof-0.1.0 → deployproof-0.1.2/src/deployproof.egg-info}/PKG-INFO +5 -8
  7. {deployproof-0.1.0 → deployproof-0.1.2}/tests/test_cli.py +2 -2
  8. deployproof-0.1.0/src/deployproof/__init__.py +0 -3
  9. {deployproof-0.1.0 → deployproof-0.1.2}/LICENSE +0 -0
  10. {deployproof-0.1.0 → deployproof-0.1.2}/setup.cfg +0 -0
  11. {deployproof-0.1.0 → deployproof-0.1.2}/src/deployproof/cli.py +0 -0
  12. {deployproof-0.1.0 → deployproof-0.1.2}/src/deployproof/diff.py +0 -0
  13. {deployproof-0.1.0 → deployproof-0.1.2}/src/deployproof/mutator.py +0 -0
  14. {deployproof-0.1.0 → deployproof-0.1.2}/src/deployproof/reporter.py +0 -0
  15. {deployproof-0.1.0 → deployproof-0.1.2}/src/deployproof/secrets.py +0 -0
  16. {deployproof-0.1.0 → deployproof-0.1.2}/src/deployproof/symlinks.py +0 -0
  17. {deployproof-0.1.0 → deployproof-0.1.2}/src/deployproof/wsl.py +0 -0
  18. {deployproof-0.1.0 → deployproof-0.1.2}/src/deployproof.egg-info/SOURCES.txt +0 -0
  19. {deployproof-0.1.0 → deployproof-0.1.2}/src/deployproof.egg-info/dependency_links.txt +0 -0
  20. {deployproof-0.1.0 → deployproof-0.1.2}/src/deployproof.egg-info/entry_points.txt +0 -0
  21. {deployproof-0.1.0 → deployproof-0.1.2}/src/deployproof.egg-info/requires.txt +0 -0
  22. {deployproof-0.1.0 → deployproof-0.1.2}/src/deployproof.egg-info/top_level.txt +0 -0
  23. {deployproof-0.1.0 → deployproof-0.1.2}/tests/test_cli_dependency_scan.py +0 -0
  24. {deployproof-0.1.0 → deployproof-0.1.2}/tests/test_dependencies_extractor.py +0 -0
  25. {deployproof-0.1.0 → deployproof-0.1.2}/tests/test_dependencies_pypi.py +0 -0
  26. {deployproof-0.1.0 → deployproof-0.1.2}/tests/test_diff.py +0 -0
  27. {deployproof-0.1.0 → deployproof-0.1.2}/tests/test_edge_cases_validation.py +0 -0
  28. {deployproof-0.1.0 → deployproof-0.1.2}/tests/test_mutation_suites.py +0 -0
  29. {deployproof-0.1.0 → deployproof-0.1.2}/tests/test_mutator.py +0 -0
  30. {deployproof-0.1.0 → deployproof-0.1.2}/tests/test_secrets.py +0 -0
  31. {deployproof-0.1.0 → deployproof-0.1.2}/tests/test_stress_regressions.py +0 -0
  32. {deployproof-0.1.0 → deployproof-0.1.2}/tests/test_symlinks.py +0 -0
  33. {deployproof-0.1.0 → deployproof-0.1.2}/tests/test_wsl.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: deployproof
3
- Version: 0.1.0
3
+ Version: 0.1.2
4
4
  Summary: A deterministic pre-push verification tool that catches untested AI code, leaked credentials, sandbox escapes, and hallucinated packages before you ship.
5
5
  Author: SVS Praveen
6
6
  License-Expression: MIT
@@ -31,13 +31,10 @@ Dynamic: license-file
31
31
 
32
32
  > A pre-push verification tool for AI-assisted codebases: mutation testing, credential scanning, sandbox-escape detection, and dependency hallucination checks.
33
33
 
34
- <!-- Once the package is published to PyPI, replace the two static badges below with:
35
- [![PyPI version](https://img.shields.io/pypi/v/deployproof)](https://pypi.org/project/deployproof/)
36
- [![Python](https://img.shields.io/pypi/pyversions/deployproof)](https://pypi.org/project/deployproof/) -->
37
- [![PyPI](https://img.shields.io/badge/PyPI-not_yet_published-lightgrey)](https://pypi.org/project/deployproof/)
34
+ [![PyPI version](https://img.shields.io/pypi/v/deployproof.svg?color=blue)](https://pypi.org/project/deployproof/)
35
+ [![Python versions](https://img.shields.io/pypi/pyversions/deployproof.svg?color=blue)](https://pypi.org/project/deployproof/)
36
+ [![Tests](https://img.shields.io/badge/tests-61%20passed-brightgreen.svg)](https://github.com/SVSPraveen/DeployProof)
38
37
  [![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](LICENSE)
39
- [![Python](https://img.shields.io/badge/python-3.10%2B-blue)](https://pypi.org/project/deployproof/)
40
- [![CI](https://github.com/SVSPraveen/deployproof/actions/workflows/ci.yml/badge.svg)](https://github.com/SVSPraveen/deployproof/actions/workflows/ci.yml)
41
38
 
42
39
  ---
43
40
 
@@ -95,7 +92,7 @@ Fixtures cover weak test suites, zero-test orphan modules, planted OpenAI/AWS cr
95
92
 
96
93
  ## Status & Roadmap
97
94
 
98
- - **Current (v0.1.0):** Diff-scoped AST mutation testing, secrets scanner, GhostApproval symlink sandbox-escape detector, PyPI dependency hallucination / slopsquatting scanner, and Tier 2 CI verification via GitHub Actions (mutmut).
95
+ - **Current (v0.1.2):** Diff-scoped AST mutation testing, secrets scanner, GhostApproval symlink sandbox-escape detector, PyPI dependency hallucination / slopsquatting scanner, and Tier 2 CI verification via GitHub Actions (mutmut).
99
96
  - **Next:** Multi-language mutation support and expanded ecosystem rule packs.
100
97
 
101
98
  ## Contributing
@@ -2,13 +2,10 @@
2
2
 
3
3
  > A pre-push verification tool for AI-assisted codebases: mutation testing, credential scanning, sandbox-escape detection, and dependency hallucination checks.
4
4
 
5
- <!-- Once the package is published to PyPI, replace the two static badges below with:
6
- [![PyPI version](https://img.shields.io/pypi/v/deployproof)](https://pypi.org/project/deployproof/)
7
- [![Python](https://img.shields.io/pypi/pyversions/deployproof)](https://pypi.org/project/deployproof/) -->
8
- [![PyPI](https://img.shields.io/badge/PyPI-not_yet_published-lightgrey)](https://pypi.org/project/deployproof/)
5
+ [![PyPI version](https://img.shields.io/pypi/v/deployproof.svg?color=blue)](https://pypi.org/project/deployproof/)
6
+ [![Python versions](https://img.shields.io/pypi/pyversions/deployproof.svg?color=blue)](https://pypi.org/project/deployproof/)
7
+ [![Tests](https://img.shields.io/badge/tests-61%20passed-brightgreen.svg)](https://github.com/SVSPraveen/DeployProof)
9
8
  [![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](LICENSE)
10
- [![Python](https://img.shields.io/badge/python-3.10%2B-blue)](https://pypi.org/project/deployproof/)
11
- [![CI](https://github.com/SVSPraveen/deployproof/actions/workflows/ci.yml/badge.svg)](https://github.com/SVSPraveen/deployproof/actions/workflows/ci.yml)
12
9
 
13
10
  ---
14
11
 
@@ -66,7 +63,7 @@ Fixtures cover weak test suites, zero-test orphan modules, planted OpenAI/AWS cr
66
63
 
67
64
  ## Status & Roadmap
68
65
 
69
- - **Current (v0.1.0):** Diff-scoped AST mutation testing, secrets scanner, GhostApproval symlink sandbox-escape detector, PyPI dependency hallucination / slopsquatting scanner, and Tier 2 CI verification via GitHub Actions (mutmut).
66
+ - **Current (v0.1.2):** Diff-scoped AST mutation testing, secrets scanner, GhostApproval symlink sandbox-escape detector, PyPI dependency hallucination / slopsquatting scanner, and Tier 2 CI verification via GitHub Actions (mutmut).
70
67
  - **Next:** Multi-language mutation support and expanded ecosystem rule packs.
71
68
 
72
69
  ## Contributing
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "deployproof"
7
- version = "0.1.0"
7
+ version = "0.1.2"
8
8
  description = "A deterministic pre-push verification tool that catches untested AI code, leaked credentials, sandbox escapes, and hallucinated packages before you ship."
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.10"
@@ -0,0 +1,2 @@
1
+ """DeployProof: Deterministic deployability verification for AI-assisted code."""
2
+ __version__ = "0.1.2"
@@ -728,7 +728,7 @@ def query_pypi_registry(
728
728
  url = f"https://pypi.org/pypi/{norm_name}/json"
729
729
  req = urllib.request.Request(
730
730
  url,
731
- headers={"User-Agent": "DeployProof/0.1.0 (https://github.com/SVSPraveen/DeployProof)"},
731
+ headers={"User-Agent": "DeployProof/0.1.2 (https://github.com/SVSPraveen/DeployProof)"},
732
732
  )
733
733
 
734
734
  try:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: deployproof
3
- Version: 0.1.0
3
+ Version: 0.1.2
4
4
  Summary: A deterministic pre-push verification tool that catches untested AI code, leaked credentials, sandbox escapes, and hallucinated packages before you ship.
5
5
  Author: SVS Praveen
6
6
  License-Expression: MIT
@@ -31,13 +31,10 @@ Dynamic: license-file
31
31
 
32
32
  > A pre-push verification tool for AI-assisted codebases: mutation testing, credential scanning, sandbox-escape detection, and dependency hallucination checks.
33
33
 
34
- <!-- Once the package is published to PyPI, replace the two static badges below with:
35
- [![PyPI version](https://img.shields.io/pypi/v/deployproof)](https://pypi.org/project/deployproof/)
36
- [![Python](https://img.shields.io/pypi/pyversions/deployproof)](https://pypi.org/project/deployproof/) -->
37
- [![PyPI](https://img.shields.io/badge/PyPI-not_yet_published-lightgrey)](https://pypi.org/project/deployproof/)
34
+ [![PyPI version](https://img.shields.io/pypi/v/deployproof.svg?color=blue)](https://pypi.org/project/deployproof/)
35
+ [![Python versions](https://img.shields.io/pypi/pyversions/deployproof.svg?color=blue)](https://pypi.org/project/deployproof/)
36
+ [![Tests](https://img.shields.io/badge/tests-61%20passed-brightgreen.svg)](https://github.com/SVSPraveen/DeployProof)
38
37
  [![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](LICENSE)
39
- [![Python](https://img.shields.io/badge/python-3.10%2B-blue)](https://pypi.org/project/deployproof/)
40
- [![CI](https://github.com/SVSPraveen/deployproof/actions/workflows/ci.yml/badge.svg)](https://github.com/SVSPraveen/deployproof/actions/workflows/ci.yml)
41
38
 
42
39
  ---
43
40
 
@@ -95,7 +92,7 @@ Fixtures cover weak test suites, zero-test orphan modules, planted OpenAI/AWS cr
95
92
 
96
93
  ## Status & Roadmap
97
94
 
98
- - **Current (v0.1.0):** Diff-scoped AST mutation testing, secrets scanner, GhostApproval symlink sandbox-escape detector, PyPI dependency hallucination / slopsquatting scanner, and Tier 2 CI verification via GitHub Actions (mutmut).
95
+ - **Current (v0.1.2):** Diff-scoped AST mutation testing, secrets scanner, GhostApproval symlink sandbox-escape detector, PyPI dependency hallucination / slopsquatting scanner, and Tier 2 CI verification via GitHub Actions (mutmut).
99
96
  - **Next:** Multi-language mutation support and expanded ecosystem rule packs.
100
97
 
101
98
  ## Contributing
@@ -9,7 +9,7 @@ from deployproof.cli import create_parser, main
9
9
 
10
10
  def test_version():
11
11
  """Verify version string is defined and matches expected version."""
12
- assert __version__ == "0.1.0"
12
+ assert __version__ == "0.1.2"
13
13
 
14
14
 
15
15
  def test_parser_version(capsys):
@@ -19,7 +19,7 @@ def test_parser_version(capsys):
19
19
  parser.parse_args(["--version"])
20
20
  assert exc_info.value.code == 0
21
21
  captured = capsys.readouterr()
22
- assert "deployproof 0.1.0" in captured.out or "deployproof 0.1.0" in captured.err
22
+ assert "deployproof 0.1.2" in captured.out or "deployproof 0.1.2" in captured.err
23
23
 
24
24
 
25
25
  def test_parser_help(capsys):
@@ -1,3 +0,0 @@
1
- """DeployProof - A deterministic AI-code deployability checker."""
2
-
3
- __version__ = "0.1.0"
File without changes
File without changes