code2llm 0.3.7__tar.gz → 0.3.8__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.
- {code2llm-0.3.7 → code2llm-0.3.8}/PKG-INFO +1 -1
- {code2llm-0.3.7 → code2llm-0.3.8}/code2llm.egg-info/PKG-INFO +1 -1
- {code2llm-0.3.7 → code2llm-0.3.8}/pyproject.toml +2 -2
- {code2llm-0.3.7 → code2llm-0.3.8}/setup.py +3 -3
- {code2llm-0.3.7 → code2llm-0.3.8}/LICENSE +0 -0
- {code2llm-0.3.7 → code2llm-0.3.8}/README.md +0 -0
- {code2llm-0.3.7 → code2llm-0.3.8}/code2flow/__init__.py +0 -0
- {code2llm-0.3.7 → code2llm-0.3.8}/code2flow/__main__.py +0 -0
- {code2llm-0.3.7 → code2llm-0.3.8}/code2flow/analysis/__init__.py +0 -0
- {code2llm-0.3.7 → code2llm-0.3.8}/code2flow/analysis/call_graph.py +0 -0
- {code2llm-0.3.7 → code2llm-0.3.8}/code2flow/analysis/cfg.py +0 -0
- {code2llm-0.3.7 → code2llm-0.3.8}/code2flow/analysis/coupling.py +0 -0
- {code2llm-0.3.7 → code2llm-0.3.8}/code2flow/analysis/data_analysis.py +0 -0
- {code2llm-0.3.7 → code2llm-0.3.8}/code2flow/analysis/dfg.py +0 -0
- {code2llm-0.3.7 → code2llm-0.3.8}/code2flow/analysis/pipeline_detector.py +0 -0
- {code2llm-0.3.7 → code2llm-0.3.8}/code2flow/analysis/side_effects.py +0 -0
- {code2llm-0.3.7 → code2llm-0.3.8}/code2flow/analysis/smells.py +0 -0
- {code2llm-0.3.7 → code2llm-0.3.8}/code2flow/analysis/type_inference.py +0 -0
- {code2llm-0.3.7 → code2llm-0.3.8}/code2flow/cli.py +0 -0
- {code2llm-0.3.7 → code2llm-0.3.8}/code2flow/core/__init__.py +0 -0
- {code2llm-0.3.7 → code2llm-0.3.8}/code2flow/core/analyzer.py +0 -0
- {code2llm-0.3.7 → code2llm-0.3.8}/code2flow/core/config.py +0 -0
- {code2llm-0.3.7 → code2llm-0.3.8}/code2flow/core/models.py +0 -0
- {code2llm-0.3.7 → code2llm-0.3.8}/code2flow/core/streaming_analyzer.py +0 -0
- {code2llm-0.3.7 → code2llm-0.3.8}/code2flow/exporters/__init__.py +0 -0
- {code2llm-0.3.7 → code2llm-0.3.8}/code2flow/exporters/base.py +0 -0
- {code2llm-0.3.7 → code2llm-0.3.8}/code2flow/exporters/context_exporter.py +0 -0
- {code2llm-0.3.7 → code2llm-0.3.8}/code2flow/exporters/flow_exporter.py +0 -0
- {code2llm-0.3.7 → code2llm-0.3.8}/code2flow/exporters/json_exporter.py +0 -0
- {code2llm-0.3.7 → code2llm-0.3.8}/code2flow/exporters/llm_exporter.py +0 -0
- {code2llm-0.3.7 → code2llm-0.3.8}/code2flow/exporters/map_exporter.py +0 -0
- {code2llm-0.3.7 → code2llm-0.3.8}/code2flow/exporters/mermaid_exporter.py +0 -0
- {code2llm-0.3.7 → code2llm-0.3.8}/code2flow/exporters/toon.py +0 -0
- {code2llm-0.3.7 → code2llm-0.3.8}/code2flow/exporters/yaml_exporter.py +0 -0
- {code2llm-0.3.7 → code2llm-0.3.8}/code2flow/llm_flow_generator.py +0 -0
- {code2llm-0.3.7 → code2llm-0.3.8}/code2flow/llm_task_generator.py +0 -0
- {code2llm-0.3.7 → code2llm-0.3.8}/code2flow/mermaid_generator.py +0 -0
- {code2llm-0.3.7 → code2llm-0.3.8}/code2flow/nlp/__init__.py +0 -0
- {code2llm-0.3.7 → code2llm-0.3.8}/code2flow/nlp/config.py +0 -0
- {code2llm-0.3.7 → code2llm-0.3.8}/code2flow/nlp/entity_resolution.py +0 -0
- {code2llm-0.3.7 → code2llm-0.3.8}/code2flow/nlp/intent_matching.py +0 -0
- {code2llm-0.3.7 → code2llm-0.3.8}/code2flow/nlp/normalization.py +0 -0
- {code2llm-0.3.7 → code2llm-0.3.8}/code2flow/nlp/pipeline.py +0 -0
- {code2llm-0.3.7 → code2llm-0.3.8}/code2flow/patterns/__init__.py +0 -0
- {code2llm-0.3.7 → code2llm-0.3.8}/code2flow/patterns/detector.py +0 -0
- {code2llm-0.3.7 → code2llm-0.3.8}/code2flow/refactor/__init__.py +0 -0
- {code2llm-0.3.7 → code2llm-0.3.8}/code2flow/refactor/prompt_engine.py +0 -0
- {code2llm-0.3.7 → code2llm-0.3.8}/code2flow/visualizers/__init__.py +0 -0
- {code2llm-0.3.7 → code2llm-0.3.8}/code2flow/visualizers/graph.py +0 -0
- {code2llm-0.3.7 → code2llm-0.3.8}/code2llm.egg-info/SOURCES.txt +0 -0
- {code2llm-0.3.7 → code2llm-0.3.8}/code2llm.egg-info/dependency_links.txt +0 -0
- {code2llm-0.3.7 → code2llm-0.3.8}/code2llm.egg-info/entry_points.txt +0 -0
- {code2llm-0.3.7 → code2llm-0.3.8}/code2llm.egg-info/requires.txt +0 -0
- {code2llm-0.3.7 → code2llm-0.3.8}/code2llm.egg-info/top_level.txt +0 -0
- {code2llm-0.3.7 → code2llm-0.3.8}/setup.cfg +0 -0
- {code2llm-0.3.7 → code2llm-0.3.8}/tests/test_advanced_analysis.py +0 -0
- {code2llm-0.3.7 → code2llm-0.3.8}/tests/test_analyzer.py +0 -0
- {code2llm-0.3.7 → code2llm-0.3.8}/tests/test_edge_cases.py +0 -0
- {code2llm-0.3.7 → code2llm-0.3.8}/tests/test_format_quality.py +0 -0
- {code2llm-0.3.7 → code2llm-0.3.8}/tests/test_nlp_pipeline.py +0 -0
- {code2llm-0.3.7 → code2llm-0.3.8}/tests/test_refactoring_engine.py +0 -0
- {code2llm-0.3.7 → code2llm-0.3.8}/tests/test_sprint2_flow.py +0 -0
- {code2llm-0.3.7 → code2llm-0.3.8}/tests/test_sprint3_pipelines.py +0 -0
- {code2llm-0.3.7 → code2llm-0.3.8}/tests/test_sprint4.py +0 -0
- {code2llm-0.3.7 → code2llm-0.3.8}/tests/test_sprint5.py +0 -0
- {code2llm-0.3.7 → code2llm-0.3.8}/tests/test_toon_v2.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: code2llm
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.8
|
|
4
4
|
Summary: High-performance Python code flow analysis with optimized TOON format - CFG, DFG, call graphs, and intelligent code queries
|
|
5
5
|
Home-page: https://github.com/wronai/stts
|
|
6
6
|
Author: STTS Project
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: code2llm
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.8
|
|
4
4
|
Summary: High-performance Python code flow analysis with optimized TOON format - CFG, DFG, call graphs, and intelligent code queries
|
|
5
5
|
Home-page: https://github.com/wronai/stts
|
|
6
6
|
Author: STTS Project
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "code2llm"
|
|
7
|
-
version = "0.3.
|
|
7
|
+
version = "0.3.8"
|
|
8
8
|
description = "High-performance Python code flow analysis with optimized TOON format - CFG, DFG, call graphs, and intelligent code queries"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
requires-python = ">=3.8"
|
|
@@ -74,7 +74,7 @@ line-length = 100
|
|
|
74
74
|
target-version = ['py38']
|
|
75
75
|
|
|
76
76
|
[tool.mypy]
|
|
77
|
-
python_version = "0.3.
|
|
77
|
+
python_version = "0.3.8"
|
|
78
78
|
ignore_missing_imports = true
|
|
79
79
|
|
|
80
80
|
[tool.pytest.ini_options]
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
"""Setup configuration for
|
|
1
|
+
"""Setup configuration for code2llm."""
|
|
2
2
|
|
|
3
3
|
from setuptools import setup, find_packages
|
|
4
4
|
import os
|
|
@@ -15,7 +15,7 @@ def read_readme():
|
|
|
15
15
|
return "Python code flow analysis tool"
|
|
16
16
|
|
|
17
17
|
setup(
|
|
18
|
-
name='
|
|
18
|
+
name='code2llm',
|
|
19
19
|
version=version,
|
|
20
20
|
description='Python code flow analysis tool - CFG, DFG, and call graph extraction',
|
|
21
21
|
long_description=read_readme(),
|
|
@@ -26,7 +26,7 @@ setup(
|
|
|
26
26
|
packages=find_packages(),
|
|
27
27
|
entry_points={
|
|
28
28
|
'console_scripts': [
|
|
29
|
-
'
|
|
29
|
+
'code2llm=code2flow.cli:main',
|
|
30
30
|
],
|
|
31
31
|
},
|
|
32
32
|
install_requires=[
|
|
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
|
|
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
|
|
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
|
|
File without changes
|
|
File without changes
|