Files
rewind/pyproject.toml
Dylan De Faoite 1113ae3ec1 ADD rewind-daemon as a command
Such that rewind-daemon can easily run in the background. Update service.py to fix library paths
2025-12-18 00:12:50 +00:00

14 lines
259 B
TOML

[project]
name = "rewind"
version = "0.0.1"
description = "Disk-backed OBS replay buffer"
readme = "README.md"
requires-python = ">=3.9"
dependencies = [
"obsws-python",
]
[project.scripts]
rewind = "rewind.clip:main"
rewind-daemon = "rewind.service:main"