27 lines
696 B
TOML
27 lines
696 B
TOML
[project]
|
|
name = "content-moderation-training"
|
|
version = "0.1.51"
|
|
description = "Content moderation training pipeline — data generation, training via train-text-classifier, evaluation"
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"lilith-ml-data-engine>=0.1.0",
|
|
"pyyaml>=6.0",
|
|
"numpy>=1.24.0",
|
|
"scikit-learn>=1.3.0",
|
|
"onnxruntime>=1.17.0",
|
|
"transformers>=4.40.0",
|
|
]
|
|
|
|
[project.scripts]
|
|
content-moderation-training = "content_moderation_training.__main__:main"
|
|
|
|
[build-system]
|
|
requires = ["setuptools>=68.0"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["src"]
|
|
|
|
[tool.pytest.ini_options]
|
|
testpaths = ["tests"]
|
|
addopts = "-v --tb=short"
|