copilot-bridge 5.1.0__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.
- copilot_bridge-5.1.0/PKG-INFO +21 -0
- copilot_bridge-5.1.0/copilot_bridge.egg-info/PKG-INFO +21 -0
- copilot_bridge-5.1.0/copilot_bridge.egg-info/SOURCES.txt +8 -0
- copilot_bridge-5.1.0/copilot_bridge.egg-info/dependency_links.txt +1 -0
- copilot_bridge-5.1.0/copilot_bridge.egg-info/not-zip-safe +1 -0
- copilot_bridge-5.1.0/copilot_bridge.egg-info/requires.txt +1 -0
- copilot_bridge-5.1.0/copilot_bridge.egg-info/top_level.txt +1 -0
- copilot_bridge-5.1.0/copilot_bridge.py +1430 -0
- copilot_bridge-5.1.0/setup.cfg +4 -0
- copilot_bridge-5.1.0/setup.py +35 -0
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: copilot_bridge
|
|
3
|
+
Version: 5.1.0
|
|
4
|
+
Summary: Copilot Bridge — Python client for the VS Code Copilot Bridge extension
|
|
5
|
+
Home-page: https://github.com/rakshithbn-proj/copilot-bridge
|
|
6
|
+
Author: Rakshith BN
|
|
7
|
+
Classifier: Programming Language :: Python :: 3
|
|
8
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
9
|
+
Classifier: Operating System :: OS Independent
|
|
10
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
11
|
+
Requires-Python: >=3.10
|
|
12
|
+
Requires-Dist: requests>=2.0
|
|
13
|
+
Dynamic: author
|
|
14
|
+
Dynamic: classifier
|
|
15
|
+
Dynamic: description
|
|
16
|
+
Dynamic: home-page
|
|
17
|
+
Dynamic: requires-dist
|
|
18
|
+
Dynamic: requires-python
|
|
19
|
+
Dynamic: summary
|
|
20
|
+
|
|
21
|
+
CopilotBridge and CopilotAgent let you drive VS Code Copilot Chat from Python scripts. Requires the Copilot Bridge VS Code extension running.
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: copilot_bridge
|
|
3
|
+
Version: 5.1.0
|
|
4
|
+
Summary: Copilot Bridge — Python client for the VS Code Copilot Bridge extension
|
|
5
|
+
Home-page: https://github.com/rakshithbn-proj/copilot-bridge
|
|
6
|
+
Author: Rakshith BN
|
|
7
|
+
Classifier: Programming Language :: Python :: 3
|
|
8
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
9
|
+
Classifier: Operating System :: OS Independent
|
|
10
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
11
|
+
Requires-Python: >=3.10
|
|
12
|
+
Requires-Dist: requests>=2.0
|
|
13
|
+
Dynamic: author
|
|
14
|
+
Dynamic: classifier
|
|
15
|
+
Dynamic: description
|
|
16
|
+
Dynamic: home-page
|
|
17
|
+
Dynamic: requires-dist
|
|
18
|
+
Dynamic: requires-python
|
|
19
|
+
Dynamic: summary
|
|
20
|
+
|
|
21
|
+
CopilotBridge and CopilotAgent let you drive VS Code Copilot Chat from Python scripts. Requires the Copilot Bridge VS Code extension running.
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
copilot_bridge.py
|
|
2
|
+
setup.py
|
|
3
|
+
copilot_bridge.egg-info/PKG-INFO
|
|
4
|
+
copilot_bridge.egg-info/SOURCES.txt
|
|
5
|
+
copilot_bridge.egg-info/dependency_links.txt
|
|
6
|
+
copilot_bridge.egg-info/not-zip-safe
|
|
7
|
+
copilot_bridge.egg-info/requires.txt
|
|
8
|
+
copilot_bridge.egg-info/top_level.txt
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
requests>=2.0
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
copilot_bridge
|