Make it a proper python module

This commit is contained in:
Jeena 2025-06-02 06:56:36 +09:00
parent 83a32712f9
commit 450de98d32
10 changed files with 160 additions and 42 deletions

13
pyproject.toml Normal file
View file

@ -0,0 +1,13 @@
[project]
name = "recoder"
version = "1.0.0"
description = "A GTK4 video transcoding GUI application"
authors = [{name = "Jeena", email = "hello@jeena.net"}]
license = "GPL-3.0-or-later"
[project.scripts]
recoder = "recoder.app:main" # This creates the /usr/bin/recoder entrypoint
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"