-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (39 loc) · 1.77 KB
/
pyproject.toml
File metadata and controls
46 lines (39 loc) · 1.77 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
[build-system]
requires = ["setuptools>=61", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "aport-agent-guardrails"
version = "1.0.22"
description = "APort Agent Guardrail — shared core for AI agent and LLM frameworks (pre-action authorization)"
readme = "README.md"
license = "Apache-2.0"
authors = [{ name = "APort Technologies Inc." }]
keywords = ["aport", "agent guardrail", "LLM guardrail", "AI agent", "guardrails", "authorization", "policy", "agent security"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
requires-python = ">=3.10"
dependencies = ["PyYAML>=6.0"]
[project.urls]
Homepage = "https://github.com/aporthq/aport-agent-guardrails"
Repository = "https://github.com/aporthq/aport-agent-guardrails"
Documentation = "https://github.com/aporthq/aport-agent-guardrails/tree/main/docs"
Issues = "https://github.com/aporthq/aport-agent-guardrails/issues"
[project.optional-dependencies]
dev = ["pytest", "pytest-asyncio"]
[project.scripts]
aport = "aport_guardrails.cli:main"
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
[tool.setuptools]
packages = ["aport_guardrails", "aport_guardrails.core", "aport_guardrails.frameworks", "aport_guardrails.providers"]
package-dir = { aport_guardrails = ".", "aport_guardrails.core" = "core", "aport_guardrails.frameworks" = "frameworks", "aport_guardrails.providers" = "providers" }
[tool.setuptools.package-data]
"aport_guardrails" = ["runtime-bundle/manifest.txt", "runtime-bundle/**/*.json", "runtime-bundle/**/*.sh", "runtime-bundle/**/*.js"]
"aport_guardrails.core" = ["*.json"]