codeanalyzer-python 0.1.1__tar.gz → 0.1.3__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.
- {codeanalyzer_python-0.1.1 → codeanalyzer_python-0.1.3}/PKG-INFO +3 -3
- {codeanalyzer_python-0.1.1 → codeanalyzer_python-0.1.3}/README.md +2 -2
- {codeanalyzer_python-0.1.1 → codeanalyzer_python-0.1.3}/pyproject.toml +6 -10
- {codeanalyzer_python-0.1.1 → codeanalyzer_python-0.1.3}/.gitignore +0 -0
- {codeanalyzer_python-0.1.1 → codeanalyzer_python-0.1.3}/LICENSE +0 -0
- {codeanalyzer_python-0.1.1 → codeanalyzer_python-0.1.3}/NOTICE +0 -0
- {codeanalyzer_python-0.1.1 → codeanalyzer_python-0.1.3}/codeanalyzer/__init__.py +0 -0
- {codeanalyzer_python-0.1.1 → codeanalyzer_python-0.1.3}/codeanalyzer/__main__.py +0 -0
- {codeanalyzer_python-0.1.1 → codeanalyzer_python-0.1.3}/codeanalyzer/core.py +0 -0
- {codeanalyzer_python-0.1.1 → codeanalyzer_python-0.1.3}/codeanalyzer/jedi/__init__.py +0 -0
- {codeanalyzer_python-0.1.1 → codeanalyzer_python-0.1.3}/codeanalyzer/jedi/jedi.py +0 -0
- {codeanalyzer_python-0.1.1 → codeanalyzer_python-0.1.3}/codeanalyzer/py.typed +0 -0
- {codeanalyzer_python-0.1.1 → codeanalyzer_python-0.1.3}/codeanalyzer/schema/__init__.py +0 -0
- {codeanalyzer_python-0.1.1 → codeanalyzer_python-0.1.3}/codeanalyzer/schema/py_schema.py +0 -0
- {codeanalyzer_python-0.1.1 → codeanalyzer_python-0.1.3}/codeanalyzer/semantic_analysis/__init__.py +0 -0
- {codeanalyzer_python-0.1.1 → codeanalyzer_python-0.1.3}/codeanalyzer/semantic_analysis/codeql/__init__.py +0 -0
- {codeanalyzer_python-0.1.1 → codeanalyzer_python-0.1.3}/codeanalyzer/semantic_analysis/codeql/codeql_analysis.py +0 -0
- {codeanalyzer_python-0.1.1 → codeanalyzer_python-0.1.3}/codeanalyzer/semantic_analysis/codeql/codeql_exceptions.py +0 -0
- {codeanalyzer_python-0.1.1 → codeanalyzer_python-0.1.3}/codeanalyzer/semantic_analysis/codeql/codeql_loader.py +0 -0
- {codeanalyzer_python-0.1.1 → codeanalyzer_python-0.1.3}/codeanalyzer/semantic_analysis/codeql/codeql_query_runner.py +0 -0
- {codeanalyzer_python-0.1.1 → codeanalyzer_python-0.1.3}/codeanalyzer/semantic_analysis/wala/__init__.py +0 -0
- {codeanalyzer_python-0.1.1 → codeanalyzer_python-0.1.3}/codeanalyzer/syntactic_analysis/__init__.py +0 -0
- {codeanalyzer_python-0.1.1 → codeanalyzer_python-0.1.3}/codeanalyzer/syntactic_analysis/symbol_table_builder.py +0 -0
- {codeanalyzer_python-0.1.1 → codeanalyzer_python-0.1.3}/codeanalyzer/utils/__init__.py +0 -0
- {codeanalyzer_python-0.1.1 → codeanalyzer_python-0.1.3}/codeanalyzer/utils/logging.py +0 -0
- {codeanalyzer_python-0.1.1 → codeanalyzer_python-0.1.3}/codeanalyzer/utils/progress_bar.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: codeanalyzer-python
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.3
|
|
4
4
|
Summary: Static Analysis on Python source code using Jedi, CodeQL and Treesitter.
|
|
5
5
|
Author-email: Rahul Krishna <i.m.ralk@gmail.com>
|
|
6
6
|
License-File: LICENSE
|
|
@@ -20,9 +20,9 @@ Requires-Dist: toml>=0.10.2
|
|
|
20
20
|
Requires-Dist: typer>=0.16.0
|
|
21
21
|
Description-Content-Type: text/markdown
|
|
22
22
|
|
|
23
|
-

|
|
24
24
|
|
|
25
|
-
Python Static Analysis
|
|
25
|
+
# A Python Static Analysis Toolkit (and Library)
|
|
26
26
|
|
|
27
27
|
A comprehensive static analysis tool for Python source code that provides symbol table generation, call graph analysis, and semantic analysis using Jedi, CodeQL, and Tree-sitter.
|
|
28
28
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-

|
|
2
2
|
|
|
3
|
-
Python Static Analysis
|
|
3
|
+
# A Python Static Analysis Toolkit (and Library)
|
|
4
4
|
|
|
5
5
|
A comprehensive static analysis tool for Python source code that provides symbol table generation, call graph analysis, and semantic analysis using Jedi, CodeQL, and Tree-sitter.
|
|
6
6
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "codeanalyzer-python"
|
|
3
|
-
version = "0.1.
|
|
3
|
+
version = "0.1.3"
|
|
4
4
|
description = "Static Analysis on Python source code using Jedi, CodeQL and Treesitter."
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
authors = [
|
|
@@ -41,22 +41,18 @@ codeanalyzer = "codeanalyzer.__main__:app"
|
|
|
41
41
|
requires = ["hatchling"]
|
|
42
42
|
build-backend = "hatchling.build"
|
|
43
43
|
|
|
44
|
-
[tool.hatch.build]
|
|
45
|
-
# Tell hatchling to use the src layout
|
|
46
|
-
sources = ["src"]
|
|
47
|
-
|
|
48
44
|
[tool.hatch.build.targets.wheel]
|
|
49
|
-
packages = ["
|
|
50
|
-
include = ["
|
|
45
|
+
packages = ["codeanalyzer"]
|
|
46
|
+
include = ["codeanalyzer/py.typed"]
|
|
51
47
|
|
|
52
48
|
[tool.hatch.build.targets.sdist]
|
|
53
49
|
include = [
|
|
54
|
-
"
|
|
55
|
-
"
|
|
50
|
+
"codeanalyzer",
|
|
51
|
+
"codeanalyzer/py.typed",
|
|
56
52
|
"README.md",
|
|
57
53
|
"LICENSE",
|
|
58
54
|
"NOTICE"
|
|
59
55
|
]
|
|
60
56
|
|
|
61
57
|
[tool.pytest.ini_options]
|
|
62
|
-
testpaths = ["
|
|
58
|
+
testpaths = ["tests"]
|
|
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
|
{codeanalyzer_python-0.1.1 → codeanalyzer_python-0.1.3}/codeanalyzer/semantic_analysis/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{codeanalyzer_python-0.1.1 → codeanalyzer_python-0.1.3}/codeanalyzer/syntactic_analysis/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|