Open itsmessk opened 6 months ago
older one: long_description=open('README.md').read(),
long_description=open('README.md').read(),
This line is trying to read the README.md file using the default encoding, but it seems like the README.md file contains some characters that can't be decoded using the default encoding. So using the utf-8 encoding instead,
long_description=open('README.md', encoding='utf-8').read(),
older one:
long_description=open('README.md').read(),
This line is trying to read the README.md file using the default encoding, but it seems like the README.md file contains some characters that can't be decoded using the default encoding. So using the utf-8 encoding instead,
long_description=open('README.md', encoding='utf-8').read(),