1
0
Files
ContentGeneration/pyproject.toml

31 lines
613 B
TOML

[project]
name = "content-generation"
version = "0.1.0"
description = "Video content generation pipeline"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"boto3",
"python-dotenv",
"elevenlabs",
"torch==2.5.1",
"transformers",
"diffusers",
"accelerate",
"safetensors",
"huggingface-hub",
"bitsandbytes",
]
[dependency-groups]
dev = [
"pytest",
"pytest-cov",
"coverage[toml]",
]
[tool.pytest.ini_options]
addopts = "-q --cov=run_video_pipeline --cov=src/logging_config.py --cov-report=term-missing --cov-fail-under=70"
testpaths = ["tests"]
python_files = ["test_*.py"]