mini-code-cli 0.0.5__tar.gz → 0.0.6__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: mini-code-cli
3
- Version: 0.0.5
3
+ Version: 0.0.6
4
4
  Summary: Minimal Coding CLI
5
5
  Author-email: Nikolai Rozanov <nikolai.rozanov@gmail.com>
6
6
  License: The MIT License (MIT)
@@ -1,9 +1,9 @@
1
1
  import os
2
2
  import json
3
3
 
4
- import .prompts
5
- import .tools
6
- import .utils
4
+ from . import prompts
5
+ from . import tools
6
+ from . import utils
7
7
 
8
8
  import argparse
9
9
  import sys
@@ -42,7 +42,7 @@ Conversation:
42
42
  return prompt.strip()
43
43
 
44
44
  if __name__=="__main__":
45
- import .tools
45
+ from . import tools
46
46
  tools_dict = tools.util_get_tools_dict()
47
47
  print(system_prompt(tools_dict))
48
48
 
@@ -72,7 +72,7 @@ def parse_args():
72
72
 
73
73
 
74
74
  if __name__ == '__main__':
75
- import .tools
75
+ from . import tools
76
76
  tools_dict = tools.util_get_tools()
77
77
 
78
78
  args = parse_args()
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: mini-code-cli
3
- Version: 0.0.5
3
+ Version: 0.0.6
4
4
  Summary: Minimal Coding CLI
5
5
  Author-email: Nikolai Rozanov <nikolai.rozanov@gmail.com>
6
6
  License: The MIT License (MIT)
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "mini-code-cli"
3
- version = "0.0.5"
3
+ version = "0.0.6"
4
4
  description = "Minimal Coding CLI"
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.10"
File without changes
File without changes
File without changes