25 lines
590 B
TOML
25 lines
590 B
TOML
[build-system]
|
|
requires = ["setuptools>=64", "wheel", 'tomli; python_version < "3.11"']
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "ffmpeg"
|
|
version = "7.1.0"
|
|
description = "FFmpeg media tools and libraries (minimal build for openpilot) (pre-built)"
|
|
requires-python = ">=3.8"
|
|
|
|
[project.scripts]
|
|
"ffmpeg" = "ffmpeg:_run_ffmpeg"
|
|
"ffprobe" = "ffmpeg:_run_ffprobe"
|
|
|
|
[tool.setuptools]
|
|
packages = ["ffmpeg"]
|
|
|
|
[tool.setuptools.package-data]
|
|
ffmpeg = ["*.so", "install/**/*"]
|
|
|
|
[tool.shim]
|
|
repo_url = "https://github.com/commaai/dependencies"
|
|
tag = "ffmpeg/v7.1.0"
|
|
datadir = "install"
|