python-code-quality 0.1.10__tar.gz → 0.1.11__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.
- {python_code_quality-0.1.10 → python_code_quality-0.1.11}/PKG-INFO +10 -1
- {python_code_quality-0.1.10 → python_code_quality-0.1.11}/README.md +6 -0
- {python_code_quality-0.1.10 → python_code_quality-0.1.11}/pyproject.toml +6 -1
- {python_code_quality-0.1.10 → python_code_quality-0.1.11}/src/py_cq/__init__.py +0 -0
- {python_code_quality-0.1.10 → python_code_quality-0.1.11}/src/py_cq/cli.py +0 -0
- {python_code_quality-0.1.10 → python_code_quality-0.1.11}/src/py_cq/config/__init__.py +0 -0
- {python_code_quality-0.1.10 → python_code_quality-0.1.11}/src/py_cq/config/config.yaml +0 -0
- {python_code_quality-0.1.10 → python_code_quality-0.1.11}/src/py_cq/context_hash.py +0 -0
- {python_code_quality-0.1.10 → python_code_quality-0.1.11}/src/py_cq/execution_engine.py +0 -0
- {python_code_quality-0.1.10 → python_code_quality-0.1.11}/src/py_cq/language_detector.py +0 -0
- {python_code_quality-0.1.10 → python_code_quality-0.1.11}/src/py_cq/llm_formatter.py +0 -0
- {python_code_quality-0.1.10 → python_code_quality-0.1.11}/src/py_cq/localtypes.py +0 -0
- {python_code_quality-0.1.10 → python_code_quality-0.1.11}/src/py_cq/main.py +0 -0
- {python_code_quality-0.1.10 → python_code_quality-0.1.11}/src/py_cq/metric_aggregator.py +0 -0
- {python_code_quality-0.1.10 → python_code_quality-0.1.11}/src/py_cq/parsers/__init__.py +0 -0
- {python_code_quality-0.1.10 → python_code_quality-0.1.11}/src/py_cq/parsers/banditparser.py +0 -0
- {python_code_quality-0.1.10 → python_code_quality-0.1.11}/src/py_cq/parsers/common.py +0 -0
- {python_code_quality-0.1.10 → python_code_quality-0.1.11}/src/py_cq/parsers/compileparser.py +0 -0
- {python_code_quality-0.1.10 → python_code_quality-0.1.11}/src/py_cq/parsers/complexityparser.py +0 -0
- {python_code_quality-0.1.10 → python_code_quality-0.1.11}/src/py_cq/parsers/coverageparser.py +0 -0
- {python_code_quality-0.1.10 → python_code_quality-0.1.11}/src/py_cq/parsers/exitcodeparser.py +0 -0
- {python_code_quality-0.1.10 → python_code_quality-0.1.11}/src/py_cq/parsers/halsteadparser.py +0 -0
- {python_code_quality-0.1.10 → python_code_quality-0.1.11}/src/py_cq/parsers/interrogateparser.py +0 -0
- {python_code_quality-0.1.10 → python_code_quality-0.1.11}/src/py_cq/parsers/linecountparser.py +0 -0
- {python_code_quality-0.1.10 → python_code_quality-0.1.11}/src/py_cq/parsers/maintainabilityparser.py +0 -0
- {python_code_quality-0.1.10 → python_code_quality-0.1.11}/src/py_cq/parsers/pytestparser.py +0 -0
- {python_code_quality-0.1.10 → python_code_quality-0.1.11}/src/py_cq/parsers/regexcountparser.py +0 -0
- {python_code_quality-0.1.10 → python_code_quality-0.1.11}/src/py_cq/parsers/ruffparser.py +0 -0
- {python_code_quality-0.1.10 → python_code_quality-0.1.11}/src/py_cq/parsers/typarser.py +0 -0
- {python_code_quality-0.1.10 → python_code_quality-0.1.11}/src/py_cq/parsers/vultureparser.py +0 -0
- {python_code_quality-0.1.10 → python_code_quality-0.1.11}/src/py_cq/py.typed +0 -0
- {python_code_quality-0.1.10 → python_code_quality-0.1.11}/src/py_cq/tool_registry.py +0 -0
|
@@ -1,10 +1,13 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: python-code-quality
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.11
|
|
4
4
|
Summary: Python Code Quality Analysis Tool - feed the results from 11 CQ tools straight into an LLM. Minimal tokens.
|
|
5
5
|
Author: Chris Kilner
|
|
6
6
|
Author-email: Chris Kilner <chris@rhiza.fr>
|
|
7
7
|
License-Expression: MIT
|
|
8
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
9
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
10
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
8
11
|
Requires-Dist: bandit>=1.8.0
|
|
9
12
|
Requires-Dist: coverage>=7.8.2
|
|
10
13
|
Requires-Dist: diskcache>=5.6.3
|
|
@@ -26,6 +29,12 @@ Description-Content-Type: text/markdown
|
|
|
26
29
|
|
|
27
30
|
# CQ - Python Code Quality Analysis Tool
|
|
28
31
|
|
|
32
|
+
[](https://github.com/rhiza-fr/py-cq/actions/workflows/ci.yml)
|
|
33
|
+
[](https://codecov.io/gh/rhiza-fr/py-cq)
|
|
34
|
+
[](https://pypi.org/project/python-code-quality/)
|
|
35
|
+
[](https://pypi.org/project/python-code-quality/)
|
|
36
|
+
[](LICENSE)
|
|
37
|
+
|
|
29
38
|
Feed the results from 11+ code quality tools to an LLM. Minimal tokens.
|
|
30
39
|
|
|
31
40
|
Why? It removes the mental burden of understanding all these tools and parsing their results.
|
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# CQ - Python Code Quality Analysis Tool
|
|
2
2
|
|
|
3
|
+
[](https://github.com/rhiza-fr/py-cq/actions/workflows/ci.yml)
|
|
4
|
+
[](https://codecov.io/gh/rhiza-fr/py-cq)
|
|
5
|
+
[](https://pypi.org/project/python-code-quality/)
|
|
6
|
+
[](https://pypi.org/project/python-code-quality/)
|
|
7
|
+
[](LICENSE)
|
|
8
|
+
|
|
3
9
|
Feed the results from 11+ code quality tools to an LLM. Minimal tokens.
|
|
4
10
|
|
|
5
11
|
Why? It removes the mental burden of understanding all these tools and parsing their results.
|
|
@@ -1,11 +1,16 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "python-code-quality"
|
|
3
|
-
version = "0.1.
|
|
3
|
+
version = "0.1.11"
|
|
4
4
|
description = "Python Code Quality Analysis Tool - feed the results from 11 CQ tools straight into an LLM. Minimal tokens."
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
requires-python = ">=3.12"
|
|
7
7
|
license = "MIT"
|
|
8
8
|
authors = [{name = "Chris Kilner", email = "chris@rhiza.fr"}]
|
|
9
|
+
classifiers = [
|
|
10
|
+
"Programming Language :: Python :: 3.12",
|
|
11
|
+
"Programming Language :: Python :: 3.13",
|
|
12
|
+
"Programming Language :: Python :: 3.14",
|
|
13
|
+
]
|
|
9
14
|
|
|
10
15
|
dependencies = [
|
|
11
16
|
"bandit>=1.8.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
|
{python_code_quality-0.1.10 → python_code_quality-0.1.11}/src/py_cq/parsers/compileparser.py
RENAMED
|
File without changes
|
{python_code_quality-0.1.10 → python_code_quality-0.1.11}/src/py_cq/parsers/complexityparser.py
RENAMED
|
File without changes
|
{python_code_quality-0.1.10 → python_code_quality-0.1.11}/src/py_cq/parsers/coverageparser.py
RENAMED
|
File without changes
|
{python_code_quality-0.1.10 → python_code_quality-0.1.11}/src/py_cq/parsers/exitcodeparser.py
RENAMED
|
File without changes
|
{python_code_quality-0.1.10 → python_code_quality-0.1.11}/src/py_cq/parsers/halsteadparser.py
RENAMED
|
File without changes
|
{python_code_quality-0.1.10 → python_code_quality-0.1.11}/src/py_cq/parsers/interrogateparser.py
RENAMED
|
File without changes
|
{python_code_quality-0.1.10 → python_code_quality-0.1.11}/src/py_cq/parsers/linecountparser.py
RENAMED
|
File without changes
|
{python_code_quality-0.1.10 → python_code_quality-0.1.11}/src/py_cq/parsers/maintainabilityparser.py
RENAMED
|
File without changes
|
|
File without changes
|
{python_code_quality-0.1.10 → python_code_quality-0.1.11}/src/py_cq/parsers/regexcountparser.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{python_code_quality-0.1.10 → python_code_quality-0.1.11}/src/py_cq/parsers/vultureparser.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|