mcpp 1.3.0__tar.gz → 1.3.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.
- {mcpp-1.3.0/src/mcpp.egg-info → mcpp-1.3.1}/PKG-INFO +9 -11
- {mcpp-1.3.0 → mcpp-1.3.1}/pyproject.toml +2 -3
- mcpp-1.3.1/requirements.txt +6 -0
- {mcpp-1.3.0 → mcpp-1.3.1/src/mcpp.egg-info}/PKG-INFO +9 -11
- mcpp-1.3.1/src/mcpp.egg-info/requires.txt +6 -0
- mcpp-1.3.0/requirements.txt +0 -6
- mcpp-1.3.0/src/mcpp.egg-info/requires.txt +0 -6
- {mcpp-1.3.0 → mcpp-1.3.1}/LICENSE +0 -0
- {mcpp-1.3.0 → mcpp-1.3.1}/README.md +0 -0
- {mcpp-1.3.0 → mcpp-1.3.1}/setup.cfg +0 -0
- {mcpp-1.3.0 → mcpp-1.3.1}/src/mcpp/__init__.py +0 -0
- {mcpp-1.3.0 → mcpp-1.3.1}/src/mcpp/__main__.py +0 -0
- {mcpp-1.3.0 → mcpp-1.3.1}/src/mcpp/additional.py +0 -0
- {mcpp-1.3.0 → mcpp-1.3.1}/src/mcpp/assets/__init__.py +0 -0
- {mcpp-1.3.0 → mcpp-1.3.1}/src/mcpp/assets/config.yaml +0 -0
- {mcpp-1.3.0 → mcpp-1.3.1}/src/mcpp/complexity.py +0 -0
- {mcpp-1.3.0 → mcpp-1.3.1}/src/mcpp/config.py +0 -0
- {mcpp-1.3.0 → mcpp-1.3.1}/src/mcpp/memory.py +0 -0
- {mcpp-1.3.0 → mcpp-1.3.1}/src/mcpp/parse.py +0 -0
- {mcpp-1.3.0 → mcpp-1.3.1}/src/mcpp/queries.py +0 -0
- {mcpp-1.3.0 → mcpp-1.3.1}/src/mcpp/smell.py +0 -0
- {mcpp-1.3.0 → mcpp-1.3.1}/src/mcpp/tree.py +0 -0
- {mcpp-1.3.0 → mcpp-1.3.1}/src/mcpp/vulnerability.py +0 -0
- {mcpp-1.3.0 → mcpp-1.3.1}/src/mcpp.egg-info/SOURCES.txt +0 -0
- {mcpp-1.3.0 → mcpp-1.3.1}/src/mcpp.egg-info/dependency_links.txt +0 -0
- {mcpp-1.3.0 → mcpp-1.3.1}/src/mcpp.egg-info/entry_points.txt +0 -0
- {mcpp-1.3.0 → mcpp-1.3.1}/src/mcpp.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
2
|
Name: mcpp
|
|
3
|
-
Version: 1.3.
|
|
3
|
+
Version: 1.3.1
|
|
4
4
|
Summary: McCabe++ (mcpp): cyclomatic complexity and other vulnerability-related code metrics
|
|
5
5
|
Author-email: Lukas Pirch <lukas.pirch@tu-berlin.de>
|
|
6
6
|
License: MIT License
|
|
@@ -26,19 +26,17 @@ License: MIT License
|
|
|
26
26
|
SOFTWARE.
|
|
27
27
|
|
|
28
28
|
Keywords: vulnerability,code metric,static analysis
|
|
29
|
-
Classifier: License :: OSI Approved :: MIT License
|
|
30
29
|
Classifier: Programming Language :: Python
|
|
31
30
|
Classifier: Programming Language :: Python :: 3
|
|
32
|
-
Requires-Python:
|
|
31
|
+
Requires-Python: <3.14,>=3.9
|
|
33
32
|
Description-Content-Type: text/markdown
|
|
34
33
|
License-File: LICENSE
|
|
35
|
-
Requires-Dist: hydra-core
|
|
36
|
-
Requires-Dist: tree-sitter
|
|
37
|
-
Requires-Dist: tree-sitter-c
|
|
38
|
-
Requires-Dist: tree-sitter-cpp
|
|
39
|
-
Requires-Dist: tqdm
|
|
40
|
-
Requires-Dist: loguru
|
|
41
|
-
Dynamic: license-file
|
|
34
|
+
Requires-Dist: hydra-core>=1.3.2
|
|
35
|
+
Requires-Dist: tree-sitter>=0.24.0
|
|
36
|
+
Requires-Dist: tree-sitter-c>=0.23.0
|
|
37
|
+
Requires-Dist: tree-sitter-cpp>=0.23.0
|
|
38
|
+
Requires-Dist: tqdm>=4.66.0
|
|
39
|
+
Requires-Dist: loguru>=0.7.0
|
|
42
40
|
|
|
43
41
|
# McCabe++ (mcpp)
|
|
44
42
|
|
|
@@ -1,17 +1,16 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "mcpp"
|
|
3
|
-
version = "1.3.
|
|
3
|
+
version = "1.3.1"
|
|
4
4
|
description = "McCabe++ (mcpp): cyclomatic complexity and other vulnerability-related code metrics"
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
authors = [{name = "Lukas Pirch", email="lukas.pirch@tu-berlin.de"}]
|
|
7
7
|
license = {file = "LICENSE"}
|
|
8
8
|
classifiers = [
|
|
9
|
-
"License :: OSI Approved :: MIT License",
|
|
10
9
|
"Programming Language :: Python",
|
|
11
10
|
"Programming Language :: Python :: 3",
|
|
12
11
|
]
|
|
13
12
|
keywords = ["vulnerability", "code metric", "static analysis"]
|
|
14
|
-
requires-python = ">=3.9"
|
|
13
|
+
requires-python = ">=3.9,<3.14"
|
|
15
14
|
dynamic = ["dependencies"]
|
|
16
15
|
|
|
17
16
|
[tool.setuptools.dynamic]
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
2
|
Name: mcpp
|
|
3
|
-
Version: 1.3.
|
|
3
|
+
Version: 1.3.1
|
|
4
4
|
Summary: McCabe++ (mcpp): cyclomatic complexity and other vulnerability-related code metrics
|
|
5
5
|
Author-email: Lukas Pirch <lukas.pirch@tu-berlin.de>
|
|
6
6
|
License: MIT License
|
|
@@ -26,19 +26,17 @@ License: MIT License
|
|
|
26
26
|
SOFTWARE.
|
|
27
27
|
|
|
28
28
|
Keywords: vulnerability,code metric,static analysis
|
|
29
|
-
Classifier: License :: OSI Approved :: MIT License
|
|
30
29
|
Classifier: Programming Language :: Python
|
|
31
30
|
Classifier: Programming Language :: Python :: 3
|
|
32
|
-
Requires-Python:
|
|
31
|
+
Requires-Python: <3.14,>=3.9
|
|
33
32
|
Description-Content-Type: text/markdown
|
|
34
33
|
License-File: LICENSE
|
|
35
|
-
Requires-Dist: hydra-core
|
|
36
|
-
Requires-Dist: tree-sitter
|
|
37
|
-
Requires-Dist: tree-sitter-c
|
|
38
|
-
Requires-Dist: tree-sitter-cpp
|
|
39
|
-
Requires-Dist: tqdm
|
|
40
|
-
Requires-Dist: loguru
|
|
41
|
-
Dynamic: license-file
|
|
34
|
+
Requires-Dist: hydra-core>=1.3.2
|
|
35
|
+
Requires-Dist: tree-sitter>=0.24.0
|
|
36
|
+
Requires-Dist: tree-sitter-c>=0.23.0
|
|
37
|
+
Requires-Dist: tree-sitter-cpp>=0.23.0
|
|
38
|
+
Requires-Dist: tqdm>=4.66.0
|
|
39
|
+
Requires-Dist: loguru>=0.7.0
|
|
42
40
|
|
|
43
41
|
# McCabe++ (mcpp)
|
|
44
42
|
|
mcpp-1.3.0/requirements.txt
DELETED
|
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
|