nicfit / eyeD3

eyeD3 is a Python module and command line program for processing ID3 tags. Information about mp3 files (i.e bit rate, sample frequency, play time, etc.) is also provided. The formats supported are ID3v1 (1.0/1.1) and ID3v2 (2.3/2.4).
http://eyed3.nicfit.net/
GNU General Public License v3.0
532 stars 58 forks source link

0.9.7 installs all files from sdist into site-packages #588

Open mgorny opened 1 year ago

mgorny commented 1 year ago
$ ls /tmp/portage/dev-python/eyeD3-0.9.7/image/usr/lib/python3.8/site-packages/
AUTHORS.rst       HISTORY.rst  MANIFEST.in  README.rst  eyed3                  poetry.lock   tests
CONTRIBUTING.rst  LICENSE      Makefile     examples    eyed3-0.9.7.dist-info  requirements  tox.ini

See https://python-poetry.org/docs/pyproject/#include-and-exclude

You need to use something like:

{ path = "poetry.lock", format = "sdist" },

for every file in include. Otherwise, it'll end up being installed.