initial commit

This commit is contained in:
2025-06-10 12:50:14 +01:00
commit b4fdf97676
5 changed files with 302 additions and 0 deletions

24
pyproject.toml Normal file
View File

@@ -0,0 +1,24 @@
[project]
name = "slobs-cli"
version = "0.1.0"
description = "A command line application for Streamlabs Desktop"
authors = [{ name = "onyx-and-iris", email = "code@onyxandiris.online" }]
dependencies = ["pyslobs>=2.0.4", "asyncclick>=8.1.8"]
requires-python = ">=3.12"
readme = "README.md"
license = { text = "MIT" }
[project.scripts]
slobs-cli = "slobs_cli.cli:run"
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.pdm]
distribution = true
[tool.pdm.scripts]
cli.cmd = "slobs-cli {args}"
cli.env_file = ".env"