apu-agent 0.0.1__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.
- apu_agent-0.0.1/PKG-INFO +32 -0
- apu_agent-0.0.1/README.md +18 -0
- apu_agent-0.0.1/pyproject.toml +39 -0
- apu_agent-0.0.1/src/apu/__init__.py +1 -0
- apu_agent-0.0.1/src/apu/main.py +6 -0
apu_agent-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
Metadata-Version: 2.3
|
|
2
|
+
Name: apu-agent
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Simple agent harness made using Pydantic AI.
|
|
5
|
+
Author: Janos Gabler
|
|
6
|
+
Author-email: Janos Gabler <janos.gabler@gmail.com>
|
|
7
|
+
Requires-Dist: pydantic-ai-slim[openrouter]>=1.82.0
|
|
8
|
+
Requires-Dist: python-dotenv>=1.2.2
|
|
9
|
+
Requires-Dist: python-frontmatter>=1.1.0
|
|
10
|
+
Requires-Dist: pyyaml>=6.0.3
|
|
11
|
+
Requires-Dist: rich>=15.0.0
|
|
12
|
+
Requires-Python: >=3.14
|
|
13
|
+
Description-Content-Type: text/markdown
|
|
14
|
+
|
|
15
|
+
# apu
|
|
16
|
+
|
|
17
|
+
Simple agent harness made using Pydantic AI.
|
|
18
|
+
|
|
19
|
+
> The package is published on PyPI as `apu-agent`, but the project, the
|
|
20
|
+
> Python module, and the terminal command are all just called `apu`.
|
|
21
|
+
|
|
22
|
+
## Installation
|
|
23
|
+
|
|
24
|
+
```console
|
|
25
|
+
pip install apu-agent
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
## Usage
|
|
29
|
+
|
|
30
|
+
```console
|
|
31
|
+
apu
|
|
32
|
+
```
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
# apu
|
|
2
|
+
|
|
3
|
+
Simple agent harness made using Pydantic AI.
|
|
4
|
+
|
|
5
|
+
> The package is published on PyPI as `apu-agent`, but the project, the
|
|
6
|
+
> Python module, and the terminal command are all just called `apu`.
|
|
7
|
+
|
|
8
|
+
## Installation
|
|
9
|
+
|
|
10
|
+
```console
|
|
11
|
+
pip install apu-agent
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
## Usage
|
|
15
|
+
|
|
16
|
+
```console
|
|
17
|
+
apu
|
|
18
|
+
```
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "apu-agent"
|
|
3
|
+
version = "0.0.1"
|
|
4
|
+
description = "Simple agent harness made using Pydantic AI."
|
|
5
|
+
readme = "README.md"
|
|
6
|
+
authors = [
|
|
7
|
+
{ name = "Janos Gabler", email = "janos.gabler@gmail.com" },
|
|
8
|
+
]
|
|
9
|
+
requires-python = ">=3.14"
|
|
10
|
+
dependencies = [
|
|
11
|
+
"pydantic-ai-slim[openrouter]>=1.82.0",
|
|
12
|
+
"python-dotenv>=1.2.2",
|
|
13
|
+
"python-frontmatter>=1.1.0",
|
|
14
|
+
"pyyaml>=6.0.3",
|
|
15
|
+
"rich>=15.0.0",
|
|
16
|
+
]
|
|
17
|
+
|
|
18
|
+
[project.scripts]
|
|
19
|
+
apu = "apu.main:main"
|
|
20
|
+
|
|
21
|
+
[build-system]
|
|
22
|
+
requires = ["uv_build>=0.10.2,<0.11.0"]
|
|
23
|
+
build-backend = "uv_build"
|
|
24
|
+
|
|
25
|
+
[tool.uv.build-backend]
|
|
26
|
+
module-name = "apu"
|
|
27
|
+
|
|
28
|
+
[tool.ruff]
|
|
29
|
+
line-length = 80
|
|
30
|
+
target-version = "py314"
|
|
31
|
+
|
|
32
|
+
[tool.ruff.lint]
|
|
33
|
+
select = ["E", "W", "F", "I", "UP", "D"]
|
|
34
|
+
|
|
35
|
+
[dependency-groups]
|
|
36
|
+
dev = [
|
|
37
|
+
"ipykernel>=7.2.0",
|
|
38
|
+
"pdbpp>=0.12.1",
|
|
39
|
+
]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"""apu: Simple agent harness made using Pydantic AI."""
|