Until now it was only possible to drag and drop a path, but now that I'm using Hyprland this is not implemented. This patch allows me to copy and paste a path either as simple text or from a file manager like Nautilus into the app.
27 lines
621 B
TOML
27 lines
621 B
TOML
[project]
|
|
name = "recoder"
|
|
version = "1.1.0"
|
|
description = "A GTK4 video transcoding GUI application"
|
|
readme = "README.md"
|
|
authors = [{name = "Jeena", email = "hello@jeena.net"}]
|
|
license = {file = "LICENSE"}
|
|
dependencies = [
|
|
"pygobject",
|
|
]
|
|
|
|
[project.scripts]
|
|
recoder = "recoder.app:main" # This creates the /usr/bin/recoder entrypoint
|
|
|
|
[build-system]
|
|
requires = ["setuptools>61", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[tool.setuptools]
|
|
package-dir = {"" = "src"}
|
|
include-package-data = true
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["src"]
|
|
|
|
[tool.setuptools.package-data]
|
|
recoder = ["resources.gresource"]
|