-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (32 loc) · 833 Bytes
/
pyproject.toml
File metadata and controls
39 lines (32 loc) · 833 Bytes
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "llm-authz-audit"
version = "0.1.4"
description = "Static security analyzer for LLM applications — eslint for LLM security"
requires-python = ">=3.11"
license = "MIT"
readme = "README.md"
dependencies = [
"typer>=0.12",
"rich>=13.0",
"pyyaml>=6.0",
"pydantic>=2.0",
]
[project.optional-dependencies]
ai = ["openai>=1.0", "anthropic>=0.30"]
dev = ["pytest>=8.0", "pytest-cov>=5.0", "ruff>=0.4", "mypy>=1.10"]
[project.scripts]
llm-authz-audit = "llm_authz_audit.cli:app"
[tool.hatch.build.targets.wheel]
packages = ["src/llm_authz_audit"]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["src"]
[tool.ruff]
target-version = "py311"
src = ["src", "tests"]
[tool.mypy]
python_version = "3.11"
strict = true