axio-tui-guards 0.2.2__tar.gz → 0.3.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.
@@ -0,0 +1,12 @@
1
+ .venv/
2
+ __pycache__/
3
+ *.pyc
4
+ *.pyo
5
+ .mypy_cache/
6
+ .ruff_cache/
7
+ .pytest_cache/
8
+ *.egg-info/
9
+ dist/
10
+ build/
11
+ _build/
12
+ .DS_Store
@@ -8,7 +8,7 @@ lint:
8
8
  uv run ruff check src/ tests/
9
9
 
10
10
  typecheck:
11
- uv run mypy src/
11
+ uv run mypy src/ tests/
12
12
 
13
13
  test:
14
14
  uv run pytest tests/ -v
@@ -1,9 +1,12 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: axio-tui-guards
3
- Version: 0.2.2
3
+ Version: 0.3.2
4
4
  Summary: Guards plugin for Axio TUI
5
+ Project-URL: Homepage, https://github.com/axio-agent/axio-tui-guards
6
+ Project-URL: Repository, https://github.com/axio-agent/axio-tui-guards
5
7
  License: MIT
6
8
  License-File: LICENSE
9
+ Keywords: agent,ai,guards,llm,terminal,textual,tui
7
10
  Requires-Python: >=3.12
8
11
  Requires-Dist: axio
9
12
  Requires-Dist: axio-tui
@@ -1,16 +1,21 @@
1
1
  [project]
2
2
  name = "axio-tui-guards"
3
- version = "0.2.2"
3
+ version = "0.3.2"
4
4
  description = "Guards plugin for Axio TUI"
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.12"
7
7
  license = {text = "MIT"}
8
+ keywords = ["llm", "agent", "ai", "tui", "textual", "guards", "terminal"]
8
9
  dependencies = ["axio", "axio-tui"]
9
10
 
10
11
  [project.entry-points."axio.guards"]
11
12
  path = "axio_tui_guards.guards:PathGuard"
12
13
  llm = "axio_tui_guards.guards:LLMGuard"
13
14
 
15
+
16
+ [project.urls]
17
+ Homepage = "https://github.com/axio-agent/axio-tui-guards"
18
+ Repository = "https://github.com/axio-agent/axio-tui-guards"
14
19
  [build-system]
15
20
  requires = ["hatchling"]
16
21
  build-backend = "hatchling.build"
@@ -188,7 +188,7 @@ wheels = [
188
188
 
189
189
  [[package]]
190
190
  name = "axio-tui-guards"
191
- version = "0.2.2"
191
+ version = "0.2.3"
192
192
  source = { editable = "." }
193
193
  dependencies = [
194
194
  { name = "axio" },
File without changes