Specify encoding for README.md so unicode characters are dealt with correctly

This commit is contained in:
Ritiek Malhotra
2018-12-29 14:10:31 +05:30
parent fbc04671d8
commit 9f09a13063

View File

@@ -1,6 +1,6 @@
from setuptools import setup
with open("README.md", "r") as f:
with open("README.md", "r", encoding="utf-8") as f:
long_description = f.read()
import spotdl