| [build-system] |
| requires = ["setuptools>=61"] |
| build-backend = "setuptools.build_meta" |
|
|
| [project] |
| name = "visual-narrator" |
| version = "0.1.0" |
| description = "Visual Narrator CLI for generating audio descriptions from video frames." |
| readme = "README.md" |
| requires-python = ">=3.10" |
| license = { text = "MIT" } |
| authors = [ |
| { name = "Visual Narrator" } |
| ] |
| keywords = ["accessibility", "audio-description", "video", "visual-narrator"] |
| classifiers = [ |
| "Development Status :: 3 - Alpha", |
| "Environment :: Console", |
| "Intended Audience :: Developers", |
| "License :: OSI Approved :: MIT License", |
| "Programming Language :: Python :: 3", |
| "Programming Language :: Python :: 3.10", |
| "Programming Language :: Python :: 3.11", |
| "Programming Language :: Python :: 3.12", |
| "Topic :: Multimedia :: Video", |
| ] |
| dependencies = [ |
| "boto3>=1.34", |
| "ffmpeg-python>=0.2.0", |
| "httpx>=0.27.0", |
| "typer>=0.12.0", |
| "yt-dlp>=2024.8.6", |
| ] |
|
|
| [project.urls] |
| Homepage = "https://visual-narrator-demo.vercel.app" |
| Documentation = "https://visual-narrator-demo.vercel.app/docs" |
|
|
| [project.scripts] |
| vn = "vn.main:app" |
|
|
| [tool.setuptools.packages.find] |
| where = ["."] |
| include = ["vn*"] |
|
|