We currently define our configuration values as module-level constants in filters.py and xmp.py. This makes it hard to actually rename or move them (especially with a deprecation period where write access should still be possible) and harms overview.
For this reason, we should move them to a dedicated module, possibly using a class with class properties to allow renaming them with a deprecation period.
We currently define our configuration values as module-level constants in
filters.pyandxmp.py. This makes it hard to actually rename or move them (especially with a deprecation period where write access should still be possible) and harms overview.For this reason, we should move them to a dedicated module, possibly using a class with class properties to allow renaming them with a deprecation period.