mirror of
https://0xacab.org/jvoisin/mat2
synced 2025-10-05 16:13:10 +02:00
While the folks running 0xacab are much more lovely than the github ones, this project has outgrown the former: - Github offers beefy continuous integration, make it easier to run the testsuite on every python version, instead of using a weird docker-based contraption. Moreover, I'd rather burn some Microsoft money than 0xacab one. - Opening an account on 0xacab is non-trivial (by design), making it tedious for people to report issues and contribute to mat2. - Gitlab is becoming unbearably slow and convoluted, even compared to Github's awful Copilot/AI push. It's a sad state of affairs, but it's a pragmatic decision. People who don't have a Github account can still report issues and send patches by sending me an email.
22 lines
722 B
TOML
22 lines
722 B
TOML
[project]
|
|
name = "mat2"
|
|
version = "0.13.5"
|
|
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://github.com/jvoisin/mat2"
|
|
Issues = "https://github.com/jvoisin/mat2/issues"
|
|
Changelog = "https://github.com/jvoisin/mat2/blob/master/CHANGELOG.md"
|
|
|
|
[tool.ruff]
|
|
target-version = "py39"
|
|
# E501 Line too long
|
|
ignore = ["E501", "F401", "E402", "E722"]
|