nanoPyCodeAgent 0.1.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.
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: nanoPyCodeAgent
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: A nano code agent built from scratch in pure Python.
|
|
5
|
+
Project-URL: Homepage, https://github.com/minixalpha/nanoPyCodeAgent
|
|
6
|
+
Project-URL: Repository, https://github.com/minixalpha/nanoPyCodeAgent
|
|
7
|
+
Project-URL: Issues, https://github.com/minixalpha/nanoPyCodeAgent/issues
|
|
8
|
+
Author: minixalpha
|
|
9
|
+
License-Expression: MIT
|
|
10
|
+
License-File: LICENSE
|
|
11
|
+
Keywords: agent,ai,code-agent,llm
|
|
12
|
+
Classifier: Intended Audience :: Developers
|
|
13
|
+
Classifier: Programming Language :: Python :: 3
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
15
|
+
Requires-Python: >=3.13
|
|
16
|
+
Description-Content-Type: text/markdown
|
|
17
|
+
|
|
18
|
+
# nanoPyCodeAgent
|
|
19
|
+
|
|
20
|
+
[English](README.md) | [简体中文](README.zh-CN.md)
|
|
21
|
+
|
|
22
|
+
A nano code agent built in pure Python.
|
|
23
|
+
|
|
24
|
+
> "What I cannot create, I do not understand." — Richard Feynman, 1988
|
|
25
|
+
|
|
26
|
+
## Usage
|
|
27
|
+
|
|
28
|
+
nanoPyCodeAgent requires Python 3.13 or newer.
|
|
29
|
+
|
|
30
|
+
### How to Run
|
|
31
|
+
|
|
32
|
+
There are a few ways to run it — pick whichever fits your workflow.
|
|
33
|
+
|
|
34
|
+
#### Run without installing
|
|
35
|
+
|
|
36
|
+
Use `uvx` to run the latest release without installing anything:
|
|
37
|
+
|
|
38
|
+
```bash
|
|
39
|
+
uvx nanoPyCodeAgent
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
#### Run after installing
|
|
43
|
+
|
|
44
|
+
Install it as a persistent command-line tool, then run it from anywhere:
|
|
45
|
+
|
|
46
|
+
```bash
|
|
47
|
+
uv tool install nanoPyCodeAgent # or: pipx install nanoPyCodeAgent
|
|
48
|
+
nanoPyCodeAgent
|
|
49
|
+
```
|
|
50
|
+
|
|
51
|
+
#### Run a branch or tagged version
|
|
52
|
+
|
|
53
|
+
Run an unreleased branch or a specific release tag straight from GitHub:
|
|
54
|
+
|
|
55
|
+
```bash
|
|
56
|
+
# latest commit on a branch
|
|
57
|
+
uvx --from "git+https://github.com/minixalpha/nanoPyCodeAgent@main" nanoPyCodeAgent
|
|
58
|
+
|
|
59
|
+
# a specific tag
|
|
60
|
+
uvx --from "git+https://github.com/minixalpha/nanoPyCodeAgent@v0.1.0" nanoPyCodeAgent
|
|
61
|
+
```
|
|
62
|
+
|
|
63
|
+
### How to Update
|
|
64
|
+
|
|
65
|
+
Upgrade an installed tool to the latest release:
|
|
66
|
+
|
|
67
|
+
```bash
|
|
68
|
+
uv tool upgrade nanoPyCodeAgent # or: pipx upgrade nanoPyCodeAgent
|
|
69
|
+
```
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
nanopycodeagent/__init__.py,sha256=Id0gZ5s6aGlqx-V_x3Eq8ndB99ltn7lN_f-MWHC6kfU,55
|
|
2
|
+
nanopycodeagent-0.1.0.dist-info/METADATA,sha256=LIT9891DoSO6N6OpC8gvn4SNYFkdlXkP7f5Kt9yCuoI,1794
|
|
3
|
+
nanopycodeagent-0.1.0.dist-info/WHEEL,sha256=mffPy8wBnZQn2VnJUU5jE99KsxaSfiyMHV9Yt0aLVxs,87
|
|
4
|
+
nanopycodeagent-0.1.0.dist-info/entry_points.txt,sha256=4gU7YNzQaf2RKlOdfebOWYNYIUk2LDoyhu3G4Vgole8,57
|
|
5
|
+
nanopycodeagent-0.1.0.dist-info/licenses/LICENSE,sha256=g24TppoiLdeF_1_-Y7H2H_eOavKseWA5utuK83Vq1sA,1067
|
|
6
|
+
nanopycodeagent-0.1.0.dist-info/RECORD,,
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 minixalpha
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|