JonnyJD / musicbrainz-isrcsubmit

script to submit ISRCs from disc to musicbrainz
http://jonnyjd.github.io/musicbrainz-isrcsubmit/
GNU General Public License v3.0
40 stars 13 forks source link

Explicitly declare the package in setup.py #142

Closed Freso closed 1 year ago

Freso commented 1 year ago

Setuptools recently added automatic discovery of packages and namespaces within given source trees/projects, however isrcsubmit’s current layout does not play well with this autodiscovery.

Explicitly declaring which Python package is being touched by using this setup.py is probably the easiest and quickest way to remedy this. We may want to switch to another solution down the line, but this should work okay for the time being.

See https://setuptools.pypa.io/en/latest/userguide/package_discovery.html for more details.

Fixes https://github.com/JonnyJD/musicbrainz-isrcsubmit/issues/140