prompt-copilot-cli 0.1.1__tar.gz → 0.1.2__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.
- {prompt_copilot_cli-0.1.1/prompt_copilot_cli.egg-info → prompt_copilot_cli-0.1.2}/PKG-INFO +8 -6
- {prompt_copilot_cli-0.1.1 → prompt_copilot_cli-0.1.2}/README.md +2 -0
- {prompt_copilot_cli-0.1.1 → prompt_copilot_cli-0.1.2}/README.zh-CN.md +2 -0
- {prompt_copilot_cli-0.1.1 → prompt_copilot_cli-0.1.2/prompt_copilot_cli.egg-info}/PKG-INFO +8 -6
- prompt_copilot_cli-0.1.2/prompt_copilot_cli.egg-info/requires.txt +4 -0
- {prompt_copilot_cli-0.1.1 → prompt_copilot_cli-0.1.2}/pyproject.toml +6 -6
- prompt_copilot_cli-0.1.2/requirements.txt +4 -0
- prompt_copilot_cli-0.1.1/prompt_copilot_cli.egg-info/requires.txt +0 -4
- prompt_copilot_cli-0.1.1/requirements.txt +0 -4
- {prompt_copilot_cli-0.1.1 → prompt_copilot_cli-0.1.2}/LICENSE +0 -0
- {prompt_copilot_cli-0.1.1 → prompt_copilot_cli-0.1.2}/MANIFEST.in +0 -0
- {prompt_copilot_cli-0.1.1 → prompt_copilot_cli-0.1.2}/main.py +0 -0
- {prompt_copilot_cli-0.1.1 → prompt_copilot_cli-0.1.2}/prompt_copilot_cli.egg-info/SOURCES.txt +0 -0
- {prompt_copilot_cli-0.1.1 → prompt_copilot_cli-0.1.2}/prompt_copilot_cli.egg-info/dependency_links.txt +0 -0
- {prompt_copilot_cli-0.1.1 → prompt_copilot_cli-0.1.2}/prompt_copilot_cli.egg-info/entry_points.txt +0 -0
- {prompt_copilot_cli-0.1.1 → prompt_copilot_cli-0.1.2}/prompt_copilot_cli.egg-info/top_level.txt +0 -0
- {prompt_copilot_cli-0.1.1 → prompt_copilot_cli-0.1.2}/setup.cfg +0 -0
- {prompt_copilot_cli-0.1.1 → prompt_copilot_cli-0.1.2}/tests/test_command_timeout.py +0 -0
- {prompt_copilot_cli-0.1.1 → prompt_copilot_cli-0.1.2}/tests/test_file_tools.py +0 -0
- {prompt_copilot_cli-0.1.1 → prompt_copilot_cli-0.1.2}/tests/test_image_tool.py +0 -0
- {prompt_copilot_cli-0.1.1 → prompt_copilot_cli-0.1.2}/tests/test_mcp_transport.py +0 -0
- {prompt_copilot_cli-0.1.1 → prompt_copilot_cli-0.1.2}/tests/test_multimodal_messages.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: prompt-copilot-cli
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.2
|
|
4
4
|
Summary: A lightweight terminal-based coding agent with file tools, command execution, multimodal image support, and MCP integration.
|
|
5
5
|
Author: Jason Li
|
|
6
6
|
License-Expression: MIT
|
|
@@ -17,13 +17,13 @@ Classifier: Programming Language :: Python :: 3.12
|
|
|
17
17
|
Classifier: Programming Language :: Python :: 3.13
|
|
18
18
|
Classifier: Topic :: Software Development :: Libraries
|
|
19
19
|
Classifier: Topic :: Utilities
|
|
20
|
-
Requires-Python:
|
|
20
|
+
Requires-Python: <3.15,>=3.10
|
|
21
21
|
Description-Content-Type: text/markdown
|
|
22
22
|
License-File: LICENSE
|
|
23
|
-
Requires-Dist: mcp
|
|
24
|
-
Requires-Dist: openai
|
|
25
|
-
Requires-Dist: prompt_toolkit
|
|
26
|
-
Requires-Dist: rich
|
|
23
|
+
Requires-Dist: mcp<2.0.0,>=1.28.0
|
|
24
|
+
Requires-Dist: openai<2.0.0,>=1.109.1
|
|
25
|
+
Requires-Dist: prompt_toolkit<4.0.0,>=3.0.52
|
|
26
|
+
Requires-Dist: rich<16.0.0,>=15.0.0
|
|
27
27
|
Dynamic: license-file
|
|
28
28
|
|
|
29
29
|
# Prompt Copilot CLI
|
|
@@ -46,6 +46,8 @@ It is designed for developers who want an interactive coding assistant that can
|
|
|
46
46
|
|
|
47
47
|
### 1. Install dependencies
|
|
48
48
|
|
|
49
|
+
This project currently works best with Python 3.10 to 3.13. Python 3.14 is not yet supported by the pinned dependency stack.
|
|
50
|
+
|
|
49
51
|
```powershell
|
|
50
52
|
py -m pip install -r requirements.txt
|
|
51
53
|
```
|
|
@@ -18,6 +18,8 @@ It is designed for developers who want an interactive coding assistant that can
|
|
|
18
18
|
|
|
19
19
|
### 1. Install dependencies
|
|
20
20
|
|
|
21
|
+
This project currently works best with Python 3.10 to 3.13. Python 3.14 is not yet supported by the pinned dependency stack.
|
|
22
|
+
|
|
21
23
|
```powershell
|
|
22
24
|
py -m pip install -r requirements.txt
|
|
23
25
|
```
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: prompt-copilot-cli
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.2
|
|
4
4
|
Summary: A lightweight terminal-based coding agent with file tools, command execution, multimodal image support, and MCP integration.
|
|
5
5
|
Author: Jason Li
|
|
6
6
|
License-Expression: MIT
|
|
@@ -17,13 +17,13 @@ Classifier: Programming Language :: Python :: 3.12
|
|
|
17
17
|
Classifier: Programming Language :: Python :: 3.13
|
|
18
18
|
Classifier: Topic :: Software Development :: Libraries
|
|
19
19
|
Classifier: Topic :: Utilities
|
|
20
|
-
Requires-Python:
|
|
20
|
+
Requires-Python: <3.15,>=3.10
|
|
21
21
|
Description-Content-Type: text/markdown
|
|
22
22
|
License-File: LICENSE
|
|
23
|
-
Requires-Dist: mcp
|
|
24
|
-
Requires-Dist: openai
|
|
25
|
-
Requires-Dist: prompt_toolkit
|
|
26
|
-
Requires-Dist: rich
|
|
23
|
+
Requires-Dist: mcp<2.0.0,>=1.28.0
|
|
24
|
+
Requires-Dist: openai<2.0.0,>=1.109.1
|
|
25
|
+
Requires-Dist: prompt_toolkit<4.0.0,>=3.0.52
|
|
26
|
+
Requires-Dist: rich<16.0.0,>=15.0.0
|
|
27
27
|
Dynamic: license-file
|
|
28
28
|
|
|
29
29
|
# Prompt Copilot CLI
|
|
@@ -46,6 +46,8 @@ It is designed for developers who want an interactive coding assistant that can
|
|
|
46
46
|
|
|
47
47
|
### 1. Install dependencies
|
|
48
48
|
|
|
49
|
+
This project currently works best with Python 3.10 to 3.13. Python 3.14 is not yet supported by the pinned dependency stack.
|
|
50
|
+
|
|
49
51
|
```powershell
|
|
50
52
|
py -m pip install -r requirements.txt
|
|
51
53
|
```
|
|
@@ -4,11 +4,11 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "prompt-copilot-cli"
|
|
7
|
-
version = "0.1.
|
|
7
|
+
version = "0.1.2"
|
|
8
8
|
description = "A lightweight terminal-based coding agent with file tools, command execution, multimodal image support, and MCP integration."
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
license = "MIT"
|
|
11
|
-
requires-python = ">=3.10"
|
|
11
|
+
requires-python = ">=3.10,<3.15"
|
|
12
12
|
authors = [{ name = "Jason Li" }]
|
|
13
13
|
keywords = ["cli", "agent", "openai", "mcp", "coding-assistant"]
|
|
14
14
|
classifiers = [
|
|
@@ -23,10 +23,10 @@ classifiers = [
|
|
|
23
23
|
"Topic :: Utilities",
|
|
24
24
|
]
|
|
25
25
|
dependencies = [
|
|
26
|
-
"mcp
|
|
27
|
-
"openai
|
|
28
|
-
"prompt_toolkit
|
|
29
|
-
"rich
|
|
26
|
+
"mcp>=1.28.0,<2.0.0",
|
|
27
|
+
"openai>=1.109.1,<2.0.0",
|
|
28
|
+
"prompt_toolkit>=3.0.52,<4.0.0",
|
|
29
|
+
"rich>=15.0.0,<16.0.0",
|
|
30
30
|
]
|
|
31
31
|
|
|
32
32
|
[project.urls]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{prompt_copilot_cli-0.1.1 → prompt_copilot_cli-0.1.2}/prompt_copilot_cli.egg-info/SOURCES.txt
RENAMED
|
File without changes
|
|
File without changes
|
{prompt_copilot_cli-0.1.1 → prompt_copilot_cli-0.1.2}/prompt_copilot_cli.egg-info/entry_points.txt
RENAMED
|
File without changes
|
{prompt_copilot_cli-0.1.1 → prompt_copilot_cli-0.1.2}/prompt_copilot_cli.egg-info/top_level.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|