25 lines
610 B
TOML
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"]
|