lincolnloop / python-qrcode

Python QR Code image generator
https://pypi.python.org/pypi/qrcode
Other
4.45k stars 682 forks source link

`qrcode` 8.0 sdist lost the manpage #380

Open mgorny opened 2 months ago

mgorny commented 2 months ago

In previous versions of the package, doc/qr.1 was included in sdist. However, it was lost in migration to poetry-core.

bartTC commented 1 month ago

Yes, Poetry does not support data files.

We should ship it, but make this a manual step documented in the README. I don't think its worth to implement magic.

I also tested https://github.com/spoorn/poeblix to overcome that but since its no longer in development, it's not worth to follow either.

mgorny commented 1 month ago

I'm just asking for it to be included in sdist, i.e. something like:

include = [
  { path = "doc/qrcode.1", format = "sdist" },
]
maribedran commented 1 month ago

@mgorny I added this to #381.

mgorny commented 1 month ago

Thanks!