code2llm 0.3.7__tar.gz → 0.3.9__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 (66) hide show
  1. {code2llm-0.3.7 → code2llm-0.3.9}/PKG-INFO +9 -9
  2. {code2llm-0.3.7 → code2llm-0.3.9}/README.md +8 -8
  3. {code2llm-0.3.7 → code2llm-0.3.9}/code2llm.egg-info/PKG-INFO +9 -9
  4. {code2llm-0.3.7 → code2llm-0.3.9}/pyproject.toml +2 -2
  5. {code2llm-0.3.7 → code2llm-0.3.9}/setup.py +3 -3
  6. {code2llm-0.3.7 → code2llm-0.3.9}/LICENSE +0 -0
  7. {code2llm-0.3.7 → code2llm-0.3.9}/code2flow/__init__.py +0 -0
  8. {code2llm-0.3.7 → code2llm-0.3.9}/code2flow/__main__.py +0 -0
  9. {code2llm-0.3.7 → code2llm-0.3.9}/code2flow/analysis/__init__.py +0 -0
  10. {code2llm-0.3.7 → code2llm-0.3.9}/code2flow/analysis/call_graph.py +0 -0
  11. {code2llm-0.3.7 → code2llm-0.3.9}/code2flow/analysis/cfg.py +0 -0
  12. {code2llm-0.3.7 → code2llm-0.3.9}/code2flow/analysis/coupling.py +0 -0
  13. {code2llm-0.3.7 → code2llm-0.3.9}/code2flow/analysis/data_analysis.py +0 -0
  14. {code2llm-0.3.7 → code2llm-0.3.9}/code2flow/analysis/dfg.py +0 -0
  15. {code2llm-0.3.7 → code2llm-0.3.9}/code2flow/analysis/pipeline_detector.py +0 -0
  16. {code2llm-0.3.7 → code2llm-0.3.9}/code2flow/analysis/side_effects.py +0 -0
  17. {code2llm-0.3.7 → code2llm-0.3.9}/code2flow/analysis/smells.py +0 -0
  18. {code2llm-0.3.7 → code2llm-0.3.9}/code2flow/analysis/type_inference.py +0 -0
  19. {code2llm-0.3.7 → code2llm-0.3.9}/code2flow/cli.py +0 -0
  20. {code2llm-0.3.7 → code2llm-0.3.9}/code2flow/core/__init__.py +0 -0
  21. {code2llm-0.3.7 → code2llm-0.3.9}/code2flow/core/analyzer.py +0 -0
  22. {code2llm-0.3.7 → code2llm-0.3.9}/code2flow/core/config.py +0 -0
  23. {code2llm-0.3.7 → code2llm-0.3.9}/code2flow/core/models.py +0 -0
  24. {code2llm-0.3.7 → code2llm-0.3.9}/code2flow/core/streaming_analyzer.py +0 -0
  25. {code2llm-0.3.7 → code2llm-0.3.9}/code2flow/exporters/__init__.py +0 -0
  26. {code2llm-0.3.7 → code2llm-0.3.9}/code2flow/exporters/base.py +0 -0
  27. {code2llm-0.3.7 → code2llm-0.3.9}/code2flow/exporters/context_exporter.py +0 -0
  28. {code2llm-0.3.7 → code2llm-0.3.9}/code2flow/exporters/flow_exporter.py +0 -0
  29. {code2llm-0.3.7 → code2llm-0.3.9}/code2flow/exporters/json_exporter.py +0 -0
  30. {code2llm-0.3.7 → code2llm-0.3.9}/code2flow/exporters/llm_exporter.py +0 -0
  31. {code2llm-0.3.7 → code2llm-0.3.9}/code2flow/exporters/map_exporter.py +0 -0
  32. {code2llm-0.3.7 → code2llm-0.3.9}/code2flow/exporters/mermaid_exporter.py +0 -0
  33. {code2llm-0.3.7 → code2llm-0.3.9}/code2flow/exporters/toon.py +0 -0
  34. {code2llm-0.3.7 → code2llm-0.3.9}/code2flow/exporters/yaml_exporter.py +0 -0
  35. {code2llm-0.3.7 → code2llm-0.3.9}/code2flow/llm_flow_generator.py +0 -0
  36. {code2llm-0.3.7 → code2llm-0.3.9}/code2flow/llm_task_generator.py +0 -0
  37. {code2llm-0.3.7 → code2llm-0.3.9}/code2flow/mermaid_generator.py +0 -0
  38. {code2llm-0.3.7 → code2llm-0.3.9}/code2flow/nlp/__init__.py +0 -0
  39. {code2llm-0.3.7 → code2llm-0.3.9}/code2flow/nlp/config.py +0 -0
  40. {code2llm-0.3.7 → code2llm-0.3.9}/code2flow/nlp/entity_resolution.py +0 -0
  41. {code2llm-0.3.7 → code2llm-0.3.9}/code2flow/nlp/intent_matching.py +0 -0
  42. {code2llm-0.3.7 → code2llm-0.3.9}/code2flow/nlp/normalization.py +0 -0
  43. {code2llm-0.3.7 → code2llm-0.3.9}/code2flow/nlp/pipeline.py +0 -0
  44. {code2llm-0.3.7 → code2llm-0.3.9}/code2flow/patterns/__init__.py +0 -0
  45. {code2llm-0.3.7 → code2llm-0.3.9}/code2flow/patterns/detector.py +0 -0
  46. {code2llm-0.3.7 → code2llm-0.3.9}/code2flow/refactor/__init__.py +0 -0
  47. {code2llm-0.3.7 → code2llm-0.3.9}/code2flow/refactor/prompt_engine.py +0 -0
  48. {code2llm-0.3.7 → code2llm-0.3.9}/code2flow/visualizers/__init__.py +0 -0
  49. {code2llm-0.3.7 → code2llm-0.3.9}/code2flow/visualizers/graph.py +0 -0
  50. {code2llm-0.3.7 → code2llm-0.3.9}/code2llm.egg-info/SOURCES.txt +0 -0
  51. {code2llm-0.3.7 → code2llm-0.3.9}/code2llm.egg-info/dependency_links.txt +0 -0
  52. {code2llm-0.3.7 → code2llm-0.3.9}/code2llm.egg-info/entry_points.txt +0 -0
  53. {code2llm-0.3.7 → code2llm-0.3.9}/code2llm.egg-info/requires.txt +0 -0
  54. {code2llm-0.3.7 → code2llm-0.3.9}/code2llm.egg-info/top_level.txt +0 -0
  55. {code2llm-0.3.7 → code2llm-0.3.9}/setup.cfg +0 -0
  56. {code2llm-0.3.7 → code2llm-0.3.9}/tests/test_advanced_analysis.py +0 -0
  57. {code2llm-0.3.7 → code2llm-0.3.9}/tests/test_analyzer.py +0 -0
  58. {code2llm-0.3.7 → code2llm-0.3.9}/tests/test_edge_cases.py +0 -0
  59. {code2llm-0.3.7 → code2llm-0.3.9}/tests/test_format_quality.py +0 -0
  60. {code2llm-0.3.7 → code2llm-0.3.9}/tests/test_nlp_pipeline.py +0 -0
  61. {code2llm-0.3.7 → code2llm-0.3.9}/tests/test_refactoring_engine.py +0 -0
  62. {code2llm-0.3.7 → code2llm-0.3.9}/tests/test_sprint2_flow.py +0 -0
  63. {code2llm-0.3.7 → code2llm-0.3.9}/tests/test_sprint3_pipelines.py +0 -0
  64. {code2llm-0.3.7 → code2llm-0.3.9}/tests/test_sprint4.py +0 -0
  65. {code2llm-0.3.7 → code2llm-0.3.9}/tests/test_sprint5.py +0 -0
  66. {code2llm-0.3.7 → code2llm-0.3.9}/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.7
3
+ Version: 0.3.9
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
@@ -47,9 +47,9 @@ Dynamic: home-page
47
47
  Dynamic: license-file
48
48
  Dynamic: requires-python
49
49
 
50
- # code2flow
50
+ # code2llm
51
51
 
52
- **Python Code Flow Analysis Tool** - Static analysis for control flow graphs (CFG), data flow graphs (DFG), and call graph extraction with optimized TOON format.
52
+ **Python Code Flow Analysis Tool with LLM Integration** - Static analysis for control flow graphs (CFG), data flow graphs (DFG), and call graph extraction with optimized TOON format.
53
53
 
54
54
  ![img.png](img.png)
55
55
 
@@ -67,13 +67,13 @@ Dynamic: requires-python
67
67
 
68
68
  ```bash
69
69
  # Default: TOON format only
70
- code2flow /path/to/project
70
+ code2llm /path/to/project
71
71
 
72
72
  # Generate all formats
73
- code2flow /path/to/project -f all
73
+ code2llm /path/to/project -f all
74
74
 
75
75
  # TOON + YAML (for comparison)
76
- code2flow /path/to/project -f toon,yaml
76
+ code2llm /path/to/project -f toon,yaml
77
77
  ```
78
78
 
79
79
  ## Performance Optimization
@@ -82,10 +82,10 @@ For large projects (>1000 functions), use **Fast Mode**:
82
82
 
83
83
  ```bash
84
84
  # Ultra-fast analysis (5-10x faster)
85
- code2flow /path/to/project --fast
85
+ code2llm /path/to/project --fast
86
86
 
87
87
  # Custom performance settings
88
- code2flow /path/to/project \
88
+ code2llm /path/to/project \
89
89
  --parallel-workers 8 \
90
90
  --max-depth 3 \
91
91
  --skip-data-flow \
@@ -209,7 +209,7 @@ code2flow /path/to/project -o my_analysis
209
209
  The TOON v2 format is designed for rapid scanning and actionable insights:
210
210
 
211
211
  ```
212
- # code2flow | 43f 10693L | py:43 | 2026-02-28
212
+ # code2llm | 43f 10693L | py:43 | 2026-02-28
213
213
  # CC̄=4.6 | critical:39/406 | dups:0 | cycles:0
214
214
 
215
215
  HEALTH[20]:
@@ -1,6 +1,6 @@
1
- # code2flow
1
+ # code2llm
2
2
 
3
- **Python Code Flow Analysis Tool** - Static analysis for control flow graphs (CFG), data flow graphs (DFG), and call graph extraction with optimized TOON format.
3
+ **Python Code Flow Analysis Tool with LLM Integration** - Static analysis for control flow graphs (CFG), data flow graphs (DFG), and call graph extraction with optimized TOON format.
4
4
 
5
5
  ![img.png](img.png)
6
6
 
@@ -18,13 +18,13 @@
18
18
 
19
19
  ```bash
20
20
  # Default: TOON format only
21
- code2flow /path/to/project
21
+ code2llm /path/to/project
22
22
 
23
23
  # Generate all formats
24
- code2flow /path/to/project -f all
24
+ code2llm /path/to/project -f all
25
25
 
26
26
  # TOON + YAML (for comparison)
27
- code2flow /path/to/project -f toon,yaml
27
+ code2llm /path/to/project -f toon,yaml
28
28
  ```
29
29
 
30
30
  ## Performance Optimization
@@ -33,10 +33,10 @@ For large projects (>1000 functions), use **Fast Mode**:
33
33
 
34
34
  ```bash
35
35
  # Ultra-fast analysis (5-10x faster)
36
- code2flow /path/to/project --fast
36
+ code2llm /path/to/project --fast
37
37
 
38
38
  # Custom performance settings
39
- code2flow /path/to/project \
39
+ code2llm /path/to/project \
40
40
  --parallel-workers 8 \
41
41
  --max-depth 3 \
42
42
  --skip-data-flow \
@@ -160,7 +160,7 @@ code2flow /path/to/project -o my_analysis
160
160
  The TOON v2 format is designed for rapid scanning and actionable insights:
161
161
 
162
162
  ```
163
- # code2flow | 43f 10693L | py:43 | 2026-02-28
163
+ # code2llm | 43f 10693L | py:43 | 2026-02-28
164
164
  # CC̄=4.6 | critical:39/406 | dups:0 | cycles:0
165
165
 
166
166
  HEALTH[20]:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: code2llm
3
- Version: 0.3.7
3
+ Version: 0.3.9
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
@@ -47,9 +47,9 @@ Dynamic: home-page
47
47
  Dynamic: license-file
48
48
  Dynamic: requires-python
49
49
 
50
- # code2flow
50
+ # code2llm
51
51
 
52
- **Python Code Flow Analysis Tool** - Static analysis for control flow graphs (CFG), data flow graphs (DFG), and call graph extraction with optimized TOON format.
52
+ **Python Code Flow Analysis Tool with LLM Integration** - Static analysis for control flow graphs (CFG), data flow graphs (DFG), and call graph extraction with optimized TOON format.
53
53
 
54
54
  ![img.png](img.png)
55
55
 
@@ -67,13 +67,13 @@ Dynamic: requires-python
67
67
 
68
68
  ```bash
69
69
  # Default: TOON format only
70
- code2flow /path/to/project
70
+ code2llm /path/to/project
71
71
 
72
72
  # Generate all formats
73
- code2flow /path/to/project -f all
73
+ code2llm /path/to/project -f all
74
74
 
75
75
  # TOON + YAML (for comparison)
76
- code2flow /path/to/project -f toon,yaml
76
+ code2llm /path/to/project -f toon,yaml
77
77
  ```
78
78
 
79
79
  ## Performance Optimization
@@ -82,10 +82,10 @@ For large projects (>1000 functions), use **Fast Mode**:
82
82
 
83
83
  ```bash
84
84
  # Ultra-fast analysis (5-10x faster)
85
- code2flow /path/to/project --fast
85
+ code2llm /path/to/project --fast
86
86
 
87
87
  # Custom performance settings
88
- code2flow /path/to/project \
88
+ code2llm /path/to/project \
89
89
  --parallel-workers 8 \
90
90
  --max-depth 3 \
91
91
  --skip-data-flow \
@@ -209,7 +209,7 @@ code2flow /path/to/project -o my_analysis
209
209
  The TOON v2 format is designed for rapid scanning and actionable insights:
210
210
 
211
211
  ```
212
- # code2flow | 43f 10693L | py:43 | 2026-02-28
212
+ # code2llm | 43f 10693L | py:43 | 2026-02-28
213
213
  # CC̄=4.6 | critical:39/406 | dups:0 | cycles:0
214
214
 
215
215
  HEALTH[20]:
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "code2llm"
7
- version = "0.3.7"
7
+ version = "0.3.9"
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.7"
77
+ python_version = "0.3.9"
78
78
  ignore_missing_imports = true
79
79
 
80
80
  [tool.pytest.ini_options]
@@ -1,4 +1,4 @@
1
- """Setup configuration for code2flow."""
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='code2flow',
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
- 'code2flow=code2flow.cli:main',
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