content-moderation/examples/epstein/pyproject.toml
Claude Code 3b2b7a1d7b deps-upgrade(epstein): ⬆️ Update Epstein dependencies to latest compatible versions in pyproject.toml
Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
2026-03-26 11:22:58 -07:00

25 lines
610 B
TOML

[project]
name = "epstein-analysis"
version = "0.1.0"
description = "Content moderation classifier applied to DOJ Epstein document corpus"
requires-python = ">=3.11"
dependencies = [
"numpy>=1.24.0",
"onnxruntime-gpu>=1.17.0",
"transformers>=4.40.0",
"tqdm>=4.66.0",
"content-moderation-feedback",
"lilith-model-boss",
"fastapi>=0.111.0",
"uvicorn[standard]>=0.30.0",
]
[project.scripts]
epstein-analysis = "epstein_analysis.__main__:main"
[build-system]
requires = ["setuptools>=68.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]