43 lines
836 B
TOML
43 lines
836 B
TOML
[project]
|
|
name = "ai-model-internal-safety-platform"
|
|
version = "6.0.0"
|
|
description = "FastAPI-based AI model internal safety testing platform"
|
|
readme = "README.md"
|
|
requires-python = ">=3.10,<3.14"
|
|
dependencies = [
|
|
"alembic>=1.13.2",
|
|
"fastapi>=0.115.0",
|
|
"httpx>=0.27.0",
|
|
"jsonschema>=4.26.0",
|
|
"pillow>=10.0.0",
|
|
"pydantic-settings>=2.5.2",
|
|
"python-dotenv>=1.0.1",
|
|
"pyyaml>=6.0.1",
|
|
"sqlalchemy>=2.0.35",
|
|
"uvicorn[standard]>=0.30.6",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"pytest>=8.3.2",
|
|
"pytest-asyncio>=0.24.0",
|
|
"ruff>=0.6.8"
|
|
]
|
|
|
|
[tool.uv]
|
|
package = false
|
|
|
|
[tool.pytest.ini_options]
|
|
testpaths = ["tests"]
|
|
asyncio_mode = "auto"
|
|
addopts = "--cov=app --cov-report=term-missing --cov-fail-under=95"
|
|
|
|
[tool.ruff]
|
|
line-length = 100
|
|
target-version = "py310"
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"pytest-cov>=7.1.0",
|
|
]
|