From dda5aa19968a0da08bf10bc907615b2e419219a3 Mon Sep 17 00:00:00 2001 From: sbkelley Date: Mon, 8 Dec 2025 15:05:15 -0500 Subject: [PATCH] Packaging 1.0.0 --- .gitignore | 3 ++- pyproject.toml | 23 +++++++++++++++++++++++ src/obs_ctl/const.py | 2 +- 3 files changed, 26 insertions(+), 2 deletions(-) create mode 100644 pyproject.toml diff --git a/.gitignore b/.gitignore index 9eaf7a4..7864c62 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ .venv __pycache__ -.vscode \ No newline at end of file +.vscode +*.egg-info \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..df10d00 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,23 @@ +[build-system] +requires = ["setuptools>=64", "setuptools-scm>=8"] +build-backend = "setuptools.build_meta" + +[project] +name = "obs-ctl" +description = "Console OBS Web Socket interface" +version = "1.0.0" +dependencies = [ + "obsws-python", + "platformdirs", + "textual", +] +requires-python = ">= 3.13" +license = {text = "Expat License ('MIT License')"} +authors = [ + {name = "Skye Kelley", email = "sb24kelley@gmail.com"} +] + +[tool.setuptools_scm] + +[project.scripts] +obs-ctl = "obs_ctl:run" diff --git a/src/obs_ctl/const.py b/src/obs_ctl/const.py index 71fe621..fbfab44 100644 --- a/src/obs_ctl/const.py +++ b/src/obs_ctl/const.py @@ -6,7 +6,7 @@ from . import data # App Info APPNAME = "obs-ctl" APPAUTHOR = "skyebee" -VERSION = "0.0.1" +VERSION = "1.0.0" # internal AVAILABLE_THEMES = [ 'textual-dark', -- 2.47.3