From 05d1ca5841aa381eb375a2c08bbb58d897a5f165 Mon Sep 17 00:00:00 2001 From: jvoisin Date: Sun, 31 Dec 2023 18:34:39 +0100 Subject: [PATCH] Improve the pyproject.yaml file Prompted by !113 --- pyproject.toml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 147e1bc..a52ee41 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,8 +1,19 @@ [project] name = "mat2" version = "0.13.4" +description = "mat2 is a metadata removal tool, supporting a wide range of commonly used file formats, written in python3: at its core, it's a library, used by an eponymous command-line interface, as well as several file manager extensions." readme = "README.md" +license = {file = "LICENSE"} requires-python = ">=3.9" +dependencies = [ + 'mutagen', + 'PyGObject', + 'pycairo', +] +[project.urls] +Repository = "https://0xacab.org/jvoisin/mat2" +Issues = "https://0xacab.org/jvoisin/mat2/-/issues" +Changelog = "https://0xacab.org/jvoisin/mat2/-/blob/master/CHANGELOG.md" [tool.ruff] target-version = "py39"