naive-knowledge-base 0.1.5__py3-none-any.whl → 0.2.0__py3-none-any.whl

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.
cli.py CHANGED
@@ -7,7 +7,7 @@ import os
7
7
  import dotenv
8
8
 
9
9
  # Define version locally
10
- __version__ = "0.1.0"
10
+ __version__ = "0.2.0"
11
11
 
12
12
  # Add current directory to path to allow local imports
13
13
  sys.path.insert(0, os.path.dirname(os.path.abspath(__file__)))
@@ -24,8 +24,10 @@ try:
24
24
  generate_folder_tree,
25
25
  )
26
26
  except ImportError as e:
27
+ import traceback
27
28
  print(f"Error importing dependencies: {e}", file=sys.stderr)
28
- print("Please install dependencies: pip install -r requirements.txt", file=sys.stderr)
29
+ traceback.print_exc(file=sys.stderr)
30
+ print("\nPlease install dependencies: pip install -r requirements.txt", file=sys.stderr)
29
31
  sys.exit(1)
30
32
 
31
33
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: naive-knowledge-base
3
- Version: 0.1.5
3
+ Version: 0.2.0
4
4
  Summary: A dependency graph analyzer using smolagents
5
5
  Home-page: https://github.com/yourusername/naive-knowledge-base
6
6
  Author: Your Name
@@ -24,96 +24,19 @@ Classifier: Programming Language :: Python :: 3.12
24
24
  Requires-Python: >=3.8
25
25
  Description-Content-Type: text/markdown
26
26
  License-File: LICENSE
27
- Requires-Dist: annotated-types==0.7.0
28
- Requires-Dist: anyio==4.12.0
29
- Requires-Dist: astroid==4.0.2
30
- Requires-Dist: attrs==25.4.0
31
- Requires-Dist: autopep8==2.3.2
32
- Requires-Dist: certifi==2025.11.12
33
- Requires-Dist: charset-normalizer==3.4.4
34
- Requires-Dist: click==8.3.1
35
- Requires-Dist: colorama==0.4.6
36
- Requires-Dist: coloredlogs==15.0.1
37
- Requires-Dist: dill==0.4.0
38
- Requires-Dist: directory_tree==1.0.0
39
- Requires-Dist: distro==1.9.0
40
- Requires-Dist: flow-code-mapper==2.0.1
41
- Requires-Dist: filelock==3.20.1
42
- Requires-Dist: fsspec==2025.12.0
43
- Requires-Dist: gitdb==4.0.12
44
- Requires-Dist: GitPython==3.1.45
45
- Requires-Dist: h11==0.16.0
46
- Requires-Dist: hf-xet==1.2.0
47
- Requires-Dist: httpcore==1.0.9
48
- Requires-Dist: httpx==0.28.1
49
- Requires-Dist: httpx-sse==0.4.1
50
- Requires-Dist: huggingface_hub==1.2.3
51
- Requires-Dist: humanfriendly==10.0
52
- Requires-Dist: idna==3.11
53
- Requires-Dist: interrogate==1.7.0
54
- Requires-Dist: isort==7.0.0
55
- Requires-Dist: Jinja2==3.1.6
56
- Requires-Dist: jiter==0.12.0
57
- Requires-Dist: joblib==1.5.3
58
- Requires-Dist: lizard==1.19.0
59
- Requires-Dist: markdown-it-py==4.0.0
60
- Requires-Dist: MarkupSafe==3.0.3
61
- Requires-Dist: mccabe==0.7.0
62
- Requires-Dist: mdurl==0.1.2
63
- Requires-Dist: networkx==3.6.1
64
- Requires-Dist: numpy==2.3.5
65
- Requires-Dist: openai==2.12.0
66
- Requires-Dist: openinference-instrumentation==0.1.38
67
- Requires-Dist: openinference-instrumentation-smolagents==0.1.18
68
- Requires-Dist: openinference-semantic-conventions==0.1.21
69
- Requires-Dist: opentelemetry-api==1.37.0
70
- Requires-Dist: opentelemetry-exporter-otlp==1.37.0
71
- Requires-Dist: opentelemetry-exporter-otlp-proto-common==1.37.0
72
- Requires-Dist: opentelemetry-exporter-otlp-proto-grpc==1.37.0
73
- Requires-Dist: opentelemetry-exporter-otlp-proto-http==1.37.0
74
- Requires-Dist: opentelemetry-instrumentation==0.58b0
75
- Requires-Dist: opentelemetry-proto==1.37.0
76
- Requires-Dist: opentelemetry-sdk==1.37.0
77
- Requires-Dist: opentelemetry-semantic-conventions==0.58b0
78
- Requires-Dist: packaging==25.0
79
- Requires-Dist: pathspec==0.12.1
80
- Requires-Dist: pillow==12.0.0
81
- Requires-Dist: platformdirs==4.5.1
82
- Requires-Dist: prettytable==3.17.0
83
- Requires-Dist: py==1.11.0
84
- Requires-Dist: pycodestyle==2.14.0
85
- Requires-Dist: pydantic==2.12.5
86
- Requires-Dist: pydantic_core==2.41.5
87
- Requires-Dist: PyDriller==2.9
88
- Requires-Dist: Pygments==2.19.2
89
- Requires-Dist: pylint==4.0.4
90
- Requires-Dist: pyparsing==3.2.5
91
- Requires-Dist: pyperclip==1.11.0
92
- Requires-Dist: python-dotenv==1.2.1
93
- Requires-Dist: python-louvain==0.16
94
- Requires-Dist: pytz==2025.2
95
- Requires-Dist: PyYAML==6.0.3
96
- Requires-Dist: requests==2.32.5
97
- Requires-Dist: rich==14.2.0
98
- Requires-Dist: scikit-learn==1.8.0
99
- Requires-Dist: scipy==1.16.3
100
- Requires-Dist: setuptools==80.9.0
101
- Requires-Dist: shellingham==1.5.4
102
- Requires-Dist: smmap==5.0.2
103
- Requires-Dist: smolagents==1.16.1
104
- Requires-Dist: sniffio==1.3.1
105
- Requires-Dist: tabulate==0.9.0
106
- Requires-Dist: threadpoolctl==3.6.0
107
- Requires-Dist: tomlkit==0.13.3
108
- Requires-Dist: flow-toon-format==0.9.0b2
109
- Requires-Dist: tqdm==4.67.1
110
- Requires-Dist: typer-slim==0.20.0
111
- Requires-Dist: types-pytz==2025.2.0.20251108
112
- Requires-Dist: typing-inspection==0.4.2
113
- Requires-Dist: typing_extensions==4.15.0
114
- Requires-Dist: urllib3==2.6.2
115
- Requires-Dist: wcwidth==0.2.14
116
- Requires-Dist: wheel==0.45.1
27
+ Requires-Dist: smolagents>=1.16.1
28
+ Requires-Dist: flow-code-mapper>=2.0.1
29
+ Requires-Dist: flow-toon-format>=0.9.0b2
30
+ Requires-Dist: openai>=2.0.0
31
+ Requires-Dist: python-dotenv>=1.0.0
32
+ Requires-Dist: pydantic>=2.0.0
33
+ Requires-Dist: networkx>=3.0
34
+ Requires-Dist: scikit-learn>=1.0.0
35
+ Requires-Dist: PyYAML>=6.0
36
+ Requires-Dist: coloredlogs>=15.0
37
+ Requires-Dist: setuptools>=45.0
38
+ Requires-Dist: pip>=20.0
39
+ Requires-Dist: directory-tree>=1.0.0
117
40
  Provides-Extra: dev
118
41
  Requires-Dist: pytest>=7.0.0; extra == "dev"
119
42
  Requires-Dist: pytest-cov>=4.0.0; extra == "dev"
@@ -1,4 +1,4 @@
1
- cli.py,sha256=ZqBfGleriD2imzWhbV7noEz2IBClE2sRzRDG9hmygXk,5782
1
+ cli.py,sha256=7SgnMhrR1GifrX316SuvE96PS2IWz4R9JN3ZC4C7gc4,5846
2
2
  main.py,sha256=AjFqJ-BAXUxeK31kuQOL_tkGW1w7WhgsS_HS5eqheXk,2219
3
3
  agents/__init__.py,sha256=5M5g7jPBn9PeMJ9TwH2Yggq0SqWY95rSnD8NWZm0cXY,151
4
4
  agents/common/__init__.py,sha256=9iwI7BZR8GqRlRD-Fvq42fW52SAZt3oUM2e0hR1bXW4,563
@@ -13,12 +13,12 @@ agents/dependency_graph/agent.py,sha256=MKTOT89licgq_w5ZnGVE-NeVvSxqN3k7LPuu7Kk5
13
13
  agents/dependency_graph/model.py,sha256=fMA4iXphVZQ41UcrgWHpp_hdUFaLY4_8-6QVaTU4o44,1098
14
14
  api_models/__init__.py,sha256=iPxcX-RpouvXZFmwbH-SeUWhW4UQBe8a-l2DmC2csrM,96
15
15
  api_models/flow_api_model.py,sha256=aSmsY0TRHB8Ylisbk8-CzB4CBo8QwAZJRLmiIa6nx6s,15184
16
- naive_knowledge_base-0.1.5.dist-info/licenses/LICENSE,sha256=OphKV48tcMv6ep-7j-8T6nycykPT0g8ZlMJ9zbGvdPs,1066
16
+ naive_knowledge_base-0.2.0.dist-info/licenses/LICENSE,sha256=OphKV48tcMv6ep-7j-8T6nycykPT0g8ZlMJ9zbGvdPs,1066
17
17
  tools/__init__.py,sha256=RUzn2bV-Q7GJrx6jy-Vo3j_5kBlJH9GTv9ZK3Z-hKGE,271
18
18
  tools/io.py,sha256=MfRJMbIjYx54iNq4nit5jVjXZqjPktg9m7RI_gCxHWo,1612
19
19
  tools/tree.py,sha256=rUv5Qm4PZW7-zxD3S8e_PFj5PliAA5XdTJyqF8L42nk,1666
20
- naive_knowledge_base-0.1.5.dist-info/METADATA,sha256=xyayVICtvD11Xq68DweEmFfR0DQBLBfoyH68gQh8JFI,9130
21
- naive_knowledge_base-0.1.5.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
22
- naive_knowledge_base-0.1.5.dist-info/entry_points.txt,sha256=UgKAmqSs86uLJ3P81eLHEauN-RWaGFT0uhZ54mTzvqo,38
23
- naive_knowledge_base-0.1.5.dist-info/top_level.txt,sha256=QLdDlcaSJKlVrg-wXEyzw4dfOnxkVaXP02og9vzF5aU,33
24
- naive_knowledge_base-0.1.5.dist-info/RECORD,,
20
+ naive_knowledge_base-0.2.0.dist-info/METADATA,sha256=l-rrqPGKWb_CfzssFJAP8c9jBlyt796meP8MFBA3Vbs,6401
21
+ naive_knowledge_base-0.2.0.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
22
+ naive_knowledge_base-0.2.0.dist-info/entry_points.txt,sha256=UgKAmqSs86uLJ3P81eLHEauN-RWaGFT0uhZ54mTzvqo,38
23
+ naive_knowledge_base-0.2.0.dist-info/top_level.txt,sha256=QLdDlcaSJKlVrg-wXEyzw4dfOnxkVaXP02og9vzF5aU,33
24
+ naive_knowledge_base-0.2.0.dist-info/RECORD,,