Spaces:
Sleeping
Sleeping
| [build-system] | |
| requires = ["setuptools>=61.0", "wheel"] | |
| build-backend = "setuptools.build_meta" | |
| [project] | |
| name = "audio-video-generator" | |
| version = "1.0.0" | |
| description = "Synchronize images to audio with Whisper transcription and CSV mapping" | |
| readme = "README.md" | |
| requires-python = ">=3.9" | |
| license = {text = "MIT"} | |
| authors = [ | |
| {name = "Audio Video Generator"} | |
| ] | |
| keywords = ["video", "audio", "whisper", "transcription", "synchronization", "moviepy"] | |
| classifiers = [ | |
| "Development Status :: 4 - Beta", | |
| "Intended Audience :: Developers", | |
| "Intended Audience :: End Users/Desktop", | |
| "License :: OSI Approved :: MIT License", | |
| "Programming Language :: Python :: 3", | |
| "Programming Language :: Python :: 3.9", | |
| "Programming Language :: Python :: 3.10", | |
| "Programming Language :: Python :: 3.11", | |
| "Programming Language :: Python :: 3.12", | |
| "Topic :: Multimedia :: Video", | |
| "Topic :: Multimedia :: Sound/Audio", | |
| ] | |
| dependencies = [ | |
| "openai-whisper>=20231117", | |
| "moviepy>=1.0.3", | |
| "gradio>=4.0.0", | |
| "torch>=2.0.0", | |
| "pillow>=10.0.0", | |
| "pandas>=2.0.0", | |
| "numpy>=1.24.0", | |
| "click>=8.0.0", | |
| "tqdm>=4.65.0", | |
| ] | |
| [project.optional-dependencies] | |
| dev = [ | |
| "pytest>=7.0.0", | |
| "pytest-cov>=4.0.0", | |
| "black>=23.0.0", | |
| "ruff>=0.1.0", | |
| "mypy>=1.5.0", | |
| ] | |
| [project.scripts] | |
| avg = "audio_video_generator.cli:main" | |
| [project.urls] | |
| Homepage = "https://github.com/audio-video-generator" | |
| Repository = "https://github.com/audio-video-generator" | |
| [tool.setuptools] | |
| package-dir = {"" = "src"} | |
| [tool.setuptools.packages.find] | |
| where = ["src"] | |
| [tool.black] | |
| line-length = 100 | |
| target-version = ["py39", "py310", "py311", "py312"] | |
| [tool.ruff] | |
| line-length = 100 | |
| target-version = "py39" | |
| [tool.mypy] | |
| python_version = "3.9" | |
| warn_return_any = true | |
| warn_unused_configs = true | |
| disallow_untyped_defs = true | |