python-code-validator 0.1.1__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 (30) hide show
  1. {python_code_validator-0.1.1/src/python_code_validator.egg-info → python_code_validator-0.1.2}/PKG-INFO +5 -4
  2. {python_code_validator-0.1.1 → python_code_validator-0.1.2}/README.md +3 -3
  3. {python_code_validator-0.1.1 → python_code_validator-0.1.2}/pyproject.toml +2 -1
  4. {python_code_validator-0.1.1 → python_code_validator-0.1.2}/src/code_validator/__init__.py +1 -1
  5. {python_code_validator-0.1.1 → python_code_validator-0.1.2/src/python_code_validator.egg-info}/PKG-INFO +5 -4
  6. {python_code_validator-0.1.1 → python_code_validator-0.1.2}/LICENSE +0 -0
  7. {python_code_validator-0.1.1 → python_code_validator-0.1.2}/setup.cfg +0 -0
  8. {python_code_validator-0.1.1 → python_code_validator-0.1.2}/src/code_validator/__main__.py +0 -0
  9. {python_code_validator-0.1.1 → python_code_validator-0.1.2}/src/code_validator/cli.py +0 -0
  10. {python_code_validator-0.1.1 → python_code_validator-0.1.2}/src/code_validator/components/__init__.py +0 -0
  11. {python_code_validator-0.1.1 → python_code_validator-0.1.2}/src/code_validator/components/ast_utils.py +0 -0
  12. {python_code_validator-0.1.1 → python_code_validator-0.1.2}/src/code_validator/components/definitions.py +0 -0
  13. {python_code_validator-0.1.1 → python_code_validator-0.1.2}/src/code_validator/components/factories.py +0 -0
  14. {python_code_validator-0.1.1 → python_code_validator-0.1.2}/src/code_validator/components/scope_handler.py +0 -0
  15. {python_code_validator-0.1.1 → python_code_validator-0.1.2}/src/code_validator/config.py +0 -0
  16. {python_code_validator-0.1.1 → python_code_validator-0.1.2}/src/code_validator/core.py +0 -0
  17. {python_code_validator-0.1.1 → python_code_validator-0.1.2}/src/code_validator/exceptions.py +0 -0
  18. {python_code_validator-0.1.1 → python_code_validator-0.1.2}/src/code_validator/output.py +0 -0
  19. {python_code_validator-0.1.1 → python_code_validator-0.1.2}/src/code_validator/rules_library/__init__.py +0 -0
  20. {python_code_validator-0.1.1 → python_code_validator-0.1.2}/src/code_validator/rules_library/basic_rules.py +0 -0
  21. {python_code_validator-0.1.1 → python_code_validator-0.1.2}/src/code_validator/rules_library/constraint_logic.py +0 -0
  22. {python_code_validator-0.1.1 → python_code_validator-0.1.2}/src/code_validator/rules_library/selector_nodes.py +0 -0
  23. {python_code_validator-0.1.1 → python_code_validator-0.1.2}/src/python_code_validator.egg-info/SOURCES.txt +0 -0
  24. {python_code_validator-0.1.1 → python_code_validator-0.1.2}/src/python_code_validator.egg-info/dependency_links.txt +0 -0
  25. {python_code_validator-0.1.1 → python_code_validator-0.1.2}/src/python_code_validator.egg-info/entry_points.txt +0 -0
  26. {python_code_validator-0.1.1 → python_code_validator-0.1.2}/src/python_code_validator.egg-info/requires.txt +0 -0
  27. {python_code_validator-0.1.1 → python_code_validator-0.1.2}/src/python_code_validator.egg-info/top_level.txt +0 -0
  28. {python_code_validator-0.1.1 → python_code_validator-0.1.2}/tests/test_components.py +0 -0
  29. {python_code_validator-0.1.1 → python_code_validator-0.1.2}/tests/test_scope_handler.py +0 -0
  30. {python_code_validator-0.1.1 → python_code_validator-0.1.2}/tests/test_validator.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: python-code-validator
3
- Version: 0.1.1
3
+ Version: 0.1.2
4
4
  Summary: A flexible framework for static validation of Python code based on JSON rules.
5
5
  Author-email: Qu1nel <covach.qn@gmail.com>
6
6
  License: MIT License
@@ -26,6 +26,7 @@ License: MIT License
26
26
  SOFTWARE.
27
27
 
28
28
  Project-URL: Homepage, https://github.com/Qu1nel/PythonCodeValidator
29
+ Project-URL: Documentation, https://pythoncodevalidator.readthedocs.io/en/latest/
29
30
  Project-URL: Bug Tracker, https://github.com/Qu1nel/PythonCodeValidator/issues
30
31
  Keywords: validation,linter,static analysis,testing,education
31
32
  Classifier: Development Status :: 3 - Alpha
@@ -78,9 +79,9 @@ Dynamic: license-file
78
79
  <h4>
79
80
  <a href="#-quick-usage-example">Usage Examples</a>
80
81
  <span>·</span>
81
- <a href="https://[your-project].readthedocs.io">Full Documentation</a>
82
+ <a href="https://pythoncodevalidator.readthedocs.io/en/latest/">Full Documentation</a>
82
83
  <span>·</span>
83
- <a href="#">AI documentation</a>
84
+ <a href="https://deepwiki.com/Qu1nel/PythonCodeValidator">AI documentation</a>
84
85
  <span>·</span>
85
86
  <a href="https://github.com/Qu1nel/PythonCodeValidator/blob/main/docs/how_it_works/index.md">Developer's Guide</a>
86
87
  <span>·</span>
@@ -280,7 +281,7 @@ Validation failed.
280
281
  - **Full User Guide & JSON Specification**: Our complete documentation is hosted on
281
282
  **[Read the Docs](https://[your-project].readthedocs.io)**.
282
283
  - **Developer's Guide**: For a deep dive into the architecture, see the
283
- **[How It Works guide](./docs/how_it_works/index.md)**.
284
+ **[How It Works guide](./docs/how_it_works/index.md)**.
284
285
  - **Interactive AI-Powered Docs**: *(Coming Soon)* An interactive documentation experience.
285
286
 
286
287
  ## 🤝 Contributing
@@ -26,9 +26,9 @@
26
26
  <h4>
27
27
  <a href="#-quick-usage-example">Usage Examples</a>
28
28
  <span>·</span>
29
- <a href="https://[your-project].readthedocs.io">Full Documentation</a>
29
+ <a href="https://pythoncodevalidator.readthedocs.io/en/latest/">Full Documentation</a>
30
30
  <span>·</span>
31
- <a href="#">AI documentation</a>
31
+ <a href="https://deepwiki.com/Qu1nel/PythonCodeValidator">AI documentation</a>
32
32
  <span>·</span>
33
33
  <a href="https://github.com/Qu1nel/PythonCodeValidator/blob/main/docs/how_it_works/index.md">Developer's Guide</a>
34
34
  <span>·</span>
@@ -228,7 +228,7 @@ Validation failed.
228
228
  - **Full User Guide & JSON Specification**: Our complete documentation is hosted on
229
229
  **[Read the Docs](https://[your-project].readthedocs.io)**.
230
230
  - **Developer's Guide**: For a deep dive into the architecture, see the
231
- **[How It Works guide](./docs/how_it_works/index.md)**.
231
+ **[How It Works guide](./docs/how_it_works/index.md)**.
232
232
  - **Interactive AI-Powered Docs**: *(Coming Soon)* An interactive documentation experience.
233
233
 
234
234
  ## 🤝 Contributing
@@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta"
5
5
 
6
6
  [project]
7
7
  name = "python-code-validator"
8
- version = "0.1.1"
8
+ version = "0.1.2"
9
9
  authors = [{ name = "Qu1nel", email = "covach.qn@gmail.com" }]
10
10
  description = "A flexible framework for static validation of Python code based on JSON rules."
11
11
  readme = "README.md"
@@ -24,6 +24,7 @@ classifiers = [
24
24
 
25
25
  [project.urls]
26
26
  "Homepage" = "https://github.com/Qu1nel/PythonCodeValidator"
27
+ "Documentation" = "https://pythoncodevalidator.readthedocs.io/en/latest/"
27
28
  "Bug Tracker" = "https://github.com/Qu1nel/PythonCodeValidator/issues"
28
29
 
29
30
 
@@ -22,4 +22,4 @@ __all__ = [
22
22
  "ValidationFailedError",
23
23
  "RuleParsingError",
24
24
  ]
25
- __version__ = "0.1.0"
25
+ __version__ = "0.1.2"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: python-code-validator
3
- Version: 0.1.1
3
+ Version: 0.1.2
4
4
  Summary: A flexible framework for static validation of Python code based on JSON rules.
5
5
  Author-email: Qu1nel <covach.qn@gmail.com>
6
6
  License: MIT License
@@ -26,6 +26,7 @@ License: MIT License
26
26
  SOFTWARE.
27
27
 
28
28
  Project-URL: Homepage, https://github.com/Qu1nel/PythonCodeValidator
29
+ Project-URL: Documentation, https://pythoncodevalidator.readthedocs.io/en/latest/
29
30
  Project-URL: Bug Tracker, https://github.com/Qu1nel/PythonCodeValidator/issues
30
31
  Keywords: validation,linter,static analysis,testing,education
31
32
  Classifier: Development Status :: 3 - Alpha
@@ -78,9 +79,9 @@ Dynamic: license-file
78
79
  <h4>
79
80
  <a href="#-quick-usage-example">Usage Examples</a>
80
81
  <span>·</span>
81
- <a href="https://[your-project].readthedocs.io">Full Documentation</a>
82
+ <a href="https://pythoncodevalidator.readthedocs.io/en/latest/">Full Documentation</a>
82
83
  <span>·</span>
83
- <a href="#">AI documentation</a>
84
+ <a href="https://deepwiki.com/Qu1nel/PythonCodeValidator">AI documentation</a>
84
85
  <span>·</span>
85
86
  <a href="https://github.com/Qu1nel/PythonCodeValidator/blob/main/docs/how_it_works/index.md">Developer's Guide</a>
86
87
  <span>·</span>
@@ -280,7 +281,7 @@ Validation failed.
280
281
  - **Full User Guide & JSON Specification**: Our complete documentation is hosted on
281
282
  **[Read the Docs](https://[your-project].readthedocs.io)**.
282
283
  - **Developer's Guide**: For a deep dive into the architecture, see the
283
- **[How It Works guide](./docs/how_it_works/index.md)**.
284
+ **[How It Works guide](./docs/how_it_works/index.md)**.
284
285
  - **Interactive AI-Powered Docs**: *(Coming Soon)* An interactive documentation experience.
285
286
 
286
287
  ## 🤝 Contributing