aegis-gateway 2.0.0a0__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,100 @@
1
+ # Node/npm local installs
2
+ node_modules/
3
+ npm-debug.log*
4
+ yarn-debug.log*
5
+ yarn-error.log*
6
+ .pnpm-store/
7
+
8
+ # Local environment files
9
+ .env
10
+ .env.*
11
+ !.env.example
12
+
13
+ ## jj
14
+ .jj
15
+
16
+ # Codex local configuration
17
+ .codex/
18
+ AGENTS.md
19
+
20
+ # Claude Flow runtime data
21
+ .claude-flow/data/
22
+ .claude-flow/logs/
23
+ CLAUDE.md
24
+ .claude
25
+ .claude-flow
26
+
27
+ # MCP
28
+ .mcp.json
29
+ ruvector.db
30
+
31
+ # ruflo agents
32
+ .agents
33
+ .swarm
34
+ .agentdb
35
+ agentdb.db
36
+
37
+ # Environment variables
38
+ .env
39
+ .env.local
40
+ .env.*.local
41
+
42
+ # Created by https://www.toptal.com/developers/gitignore/api/visualstudiocode
43
+ # Edit at https://www.toptal.com/developers/gitignore?templates=visualstudiocode
44
+
45
+ ### VisualStudioCode ###
46
+ .vscode/*
47
+ !.vscode/settings.json
48
+ !.vscode/tasks.json
49
+ !.vscode/launch.json
50
+ !.vscode/extensions.json
51
+ !.vscode/*.code-snippets
52
+ .vscode
53
+
54
+ # Local History for Visual Studio Code
55
+ .history/
56
+
57
+ # Built Visual Studio Code Extensions
58
+ *.vsix
59
+
60
+ ### VisualStudioCode Patch ###
61
+ # Ignore all local history of files
62
+ .history
63
+ .ionide
64
+
65
+ ### Misc files
66
+ gemma4
67
+ .postman/
68
+ .openclaude/
69
+ postman/
70
+
71
+ ### OpenClaude
72
+ .openclaude-profile.json
73
+
74
+ # Python
75
+ __pycache__/
76
+ *.py[cod]
77
+ *.egg-info/
78
+ .pytest_cache/
79
+ dist/
80
+ build/
81
+ *.egg
82
+ .venv/
83
+ .uv-cache/
84
+ .tmp/
85
+ .ruff_cache/
86
+
87
+ # Docker
88
+ .docker/
89
+
90
+ ### Build plans
91
+ BUILD_PLAN.md
92
+ CLAUDE.md
93
+ PROJECT_SPEC.md
94
+ AMEND_PLAN.md
95
+ SOURCE_OF_TRUTH.md
96
+ repo-seed/
97
+ .import_linter_cache/
98
+ site/
99
+
100
+ # End of https://www.toptal.com/developers/gitignore/api/visualstudiocode
@@ -0,0 +1,17 @@
1
+ Metadata-Version: 2.4
2
+ Name: aegis-gateway
3
+ Version: 2.0.0a0
4
+ Summary: Aegis v2 — umbrella package: CLI, server, core, and default policy packs.
5
+ Project-URL: Homepage, https://github.com/e-choness/aegis
6
+ Project-URL: Repository, https://github.com/e-choness/aegis
7
+ Project-URL: Issues, https://github.com/e-choness/aegis/issues
8
+ License: MIT
9
+ Requires-Python: >=3.12
10
+ Requires-Dist: aegis-gateway-cli
11
+ Requires-Dist: aegis-gateway-core
12
+ Requires-Dist: aegis-gateway-pack-budgets
13
+ Requires-Dist: aegis-gateway-pack-classification
14
+ Requires-Dist: aegis-gateway-pack-llm-guard[llm-guard]
15
+ Requires-Dist: aegis-gateway-pack-pii[pii]
16
+ Requires-Dist: aegis-gateway-pack-residency
17
+ Requires-Dist: aegis-gateway-server
@@ -0,0 +1,39 @@
1
+ [project]
2
+ name = "aegis-gateway"
3
+ version = "2.0.0a0"
4
+ description = "Aegis v2 — umbrella package: CLI, server, core, and default policy packs."
5
+ license = { text = "MIT" }
6
+ requires-python = ">=3.12"
7
+
8
+ dependencies = [
9
+ "aegis-gateway-cli",
10
+ "aegis-gateway-core",
11
+ "aegis-gateway-server",
12
+ "aegis-gateway-pack-pii[pii]",
13
+ "aegis-gateway-pack-llm-guard[llm-guard]",
14
+ "aegis-gateway-pack-classification",
15
+ "aegis-gateway-pack-residency",
16
+ "aegis-gateway-pack-budgets",
17
+ ]
18
+
19
+ [project.urls]
20
+ Homepage = "https://github.com/e-choness/aegis"
21
+ Repository = "https://github.com/e-choness/aegis"
22
+ Issues = "https://github.com/e-choness/aegis/issues"
23
+
24
+ [tool.uv.sources]
25
+ aegis-gateway-cli = { workspace = true }
26
+ aegis-gateway-core = { workspace = true }
27
+ aegis-gateway-server = { workspace = true }
28
+ aegis-gateway-pack-pii = { workspace = true }
29
+ aegis-gateway-pack-llm-guard = { workspace = true }
30
+ aegis-gateway-pack-classification = { workspace = true }
31
+ aegis-gateway-pack-residency = { workspace = true }
32
+ aegis-gateway-pack-budgets = { workspace = true }
33
+
34
+ [build-system]
35
+ requires = ["hatchling"]
36
+ build-backend = "hatchling.build"
37
+
38
+ [tool.hatch.build.targets.wheel]
39
+ packages = ["src/aegis_gateway"]
@@ -0,0 +1,4 @@
1
+ """Umbrella package for the Aegis gateway distribution."""
2
+
3
+ __all__ = ["__version__"]
4
+ __version__ = "2.0.0a0"