ratoaq2 / pgsrip

Rip your PGS subtitles
MIT License
43 stars 8 forks source link

add setuptools to dependencies #78

Closed arcmags closed 3 months ago

arcmags commented 3 months ago

distutils is no longer installed by default in python 3.12. setuptools now provides those functionalities.

Without setuptools in python 3.12, pgsrip fails to run:

    from pkg_resources import resource_stream
ModuleNotFoundError: No module named 'pkg_resources'
ratoaq2 commented 3 months ago

Thanks