forked from LiveCarta/ContentGeneration
31 lines
620 B
TOML
31 lines
620 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!=5.4.0",
|
|
"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"]
|