Fixed the read function in setup.py as the encoding was not explicitly defined and that resulted in error while installing with pip.
The error was as follows during pip install pyarabic:
UnicodeDecodeError: 'charmap' codec can't decode byte 0x81 in position 301: character maps to <undefined>
Fixed the
read
function insetup.py
as the encoding was not explicitly defined and that resulted in error while installing withpip
.The error was as follows during
pip install pyarabic
:UnicodeDecodeError: 'charmap' codec can't decode byte 0x81 in position 301: character maps to <undefined>
Now the error is resolved.