mirror of
https://github.com/ApfelTeeSaft/restream_playout.git
synced 2026-08-26 19:33:32 +00:00
21 lines
461 B
TOML
21 lines
461 B
TOML
[build-system]
|
|
requires = ["setuptools>=68"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "restream-playout"
|
|
version = "0.1.0"
|
|
description = "Pure-Python H.264/AAC MP4 playout to RTMP"
|
|
readme = "README.md"
|
|
requires-python = ">=3.11"
|
|
license = { text = "do whatever you want" }
|
|
authors = [{ name = "apfelteesaft" }]
|
|
dependencies = []
|
|
|
|
[tool.setuptools.packages.find]
|
|
include = ["restream_playout*"]
|
|
|
|
[tool.pytest.ini_options]
|
|
testpaths = ["tests"]
|
|
|