-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (43 loc) · 1.15 KB
/
pyproject.toml
File metadata and controls
51 lines (43 loc) · 1.15 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
47
48
49
50
51
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "arcada"
version = "0.1.0"
description = "ARCADA – AI Runtime & Trust Evaluator: Zero-trust security auditor for AI systems, LLM infrastructure, and supply chains"
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.11"
dependencies = [
"click>=8.1.0",
"fastapi>=0.111.0",
"uvicorn[standard]>=0.30.0",
"httpx>=0.27.0",
"pydantic>=2.7.0",
"rich>=13.7.0",
"toml>=0.10.2",
"packaging>=24.0",
"pip-audit>=2.7.0",
"python-dotenv>=1.0.0",
"aiofiles>=23.2.1",
"pyyaml>=6.0.1",
"slowapi>=0.1.9",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"pytest-asyncio>=0.23.0",
"httpx>=0.27.0",
]
[project.scripts]
arcada = "arcada.cli:main"
[tool.setuptools.packages.find]
where = ["."]
include = ["arcada*"]
[tool.ruff]
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "S"]
ignore = ["E501", "S311", "S112", "S110", "S603", "S607", "F401", "F541", "F841", "E402", "S104", "S102", "F601", "F821", "S324"]
[tool.ruff.lint.per-file-ignores]
"tests/*" = ["S", "F401"]