summaryrefslogtreecommitdiff
path: root/pyproject.toml
diff options
context:
space:
mode:
authorjvoisin2023-12-31 18:34:39 +0100
committerjvoisin2023-12-31 18:34:39 +0100
commit05d1ca5841aa381eb375a2c08bbb58d897a5f165 (patch)
tree0a37c99c48c5b1487e38e2b8d8eb140c8277c735 /pyproject.toml
parent55b468ded76a66f46269b128755297ee1e404078 (diff)
Improve the pyproject.yaml file
Prompted by !113
Diffstat (limited to '')
-rw-r--r--pyproject.toml11
1 files changed, 11 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml
index 147e1bc..a52ee41 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -1,8 +1,19 @@
1[project] 1[project]
2name = "mat2" 2name = "mat2"
3version = "0.13.4" 3version = "0.13.4"
4description = "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."
4readme = "README.md" 5readme = "README.md"
6license = {file = "LICENSE"}
5requires-python = ">=3.9" 7requires-python = ">=3.9"
8dependencies = [
9 'mutagen',
10 'PyGObject',
11 'pycairo',
12]
13[project.urls]
14Repository = "https://0xacab.org/jvoisin/mat2"
15Issues = "https://0xacab.org/jvoisin/mat2/-/issues"
16Changelog = "https://0xacab.org/jvoisin/mat2/-/blob/master/CHANGELOG.md"
6 17
7[tool.ruff] 18[tool.ruff]
8target-version = "py39" 19target-version = "py39"