diff options
| -rw-r--r-- | pyproject.toml | 11 |
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] |
| 2 | name = "mat2" | 2 | name = "mat2" |
| 3 | version = "0.13.4" | 3 | version = "0.13.4" |
| 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." | ||
| 4 | readme = "README.md" | 5 | readme = "README.md" |
| 6 | license = {file = "LICENSE"} | ||
| 5 | requires-python = ">=3.9" | 7 | requires-python = ">=3.9" |
| 8 | dependencies = [ | ||
| 9 | 'mutagen', | ||
| 10 | 'PyGObject', | ||
| 11 | 'pycairo', | ||
| 12 | ] | ||
| 13 | [project.urls] | ||
| 14 | Repository = "https://0xacab.org/jvoisin/mat2" | ||
| 15 | Issues = "https://0xacab.org/jvoisin/mat2/-/issues" | ||
| 16 | Changelog = "https://0xacab.org/jvoisin/mat2/-/blob/master/CHANGELOG.md" | ||
| 6 | 17 | ||
| 7 | [tool.ruff] | 18 | [tool.ruff] |
| 8 | target-version = "py39" | 19 | target-version = "py39" |
