codetoprompt 0.2.2__tar.gz → 0.2.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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: codetoprompt
3
- Version: 0.2.2
3
+ Version: 0.2.3
4
4
  Summary: Convert your codebase into a single LLM prompt
5
5
  Author-email: Yash Bhaskar <yash9439@gmail.com>
6
6
  License: MIT
@@ -72,7 +72,7 @@ Exclude Patterns: []
72
72
  Respect .gitignore: {args.respect_gitignore}
73
73
  Show Line Numbers: {args.show_line_numbers}
74
74
  Max Tokens: Unlimited
75
- Copy to Clipboard: False""",
75
+ Copy to Clipboard: True""",
76
76
  title="CodeToPrompt",
77
77
  border_style="blue",
78
78
  )
@@ -82,6 +82,8 @@ Copy to Clipboard: False""",
82
82
  with Progress(
83
83
  SpinnerColumn(),
84
84
  TextColumn("[progress.description]{task.description}"),
85
+ BarColumn(),
86
+ TimeElapsedColumn(),
85
87
  console=console,
86
88
  ) as progress:
87
89
  task = progress.add_task("Processing files...", total=None)
@@ -91,6 +93,7 @@ Copy to Clipboard: False""",
91
93
  respect_gitignore=args.respect_gitignore,
92
94
  output_file=args.output,
93
95
  count_tokens=args.count_tokens,
96
+ copy_to_clipboard=True,
94
97
  )
95
98
  return 0
96
99
  except Exception as e:
@@ -1,3 +1,3 @@
1
1
  """Version information."""
2
2
 
3
- __version__ = "0.2.2"
3
+ __version__ = "0.2.3"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: codetoprompt
3
- Version: 0.2.2
3
+ Version: 0.2.3
4
4
  Summary: Convert your codebase into a single LLM prompt
5
5
  Author-email: Yash Bhaskar <yash9439@gmail.com>
6
6
  License: MIT
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "codetoprompt"
7
- version = "0.2.2"
7
+ version = "0.2.3"
8
8
  description = "Convert your codebase into a single LLM prompt"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.8"
File without changes
File without changes
File without changes
File without changes