Please push data files in /usr/share instead of /usr/lib
Hi!
In setup.py
, you are pushing a few files (images, xml config, etc.) in the same directory where sublime-music
is installed. In Debian that happens to be /usr/lib/python3/dist-packages/sublime
, but I'm pretty sure all sane distros install python libs in /usr/lib/
too.
The Filesystem Hierarchy Standard says data files should instead by in /usr/share
.
I'd make a patch, but I'm not familiar enough with the code base and I fear I'll break some hardcoded path somewhere by moving files around.
Here's how bookletimposer
does it for example:
https://git.codecoop.org/kjo/bookletimposer/-/blob/master/setup.py#L106