We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
# setup.py long_description=read('README.rst'),
cp949 인코딩 에러 뜹니다
read 함수를 이렇게 바꾸고...
def read(file_name, **kwargs): with open(os.path.join(os.path.dirname(__file__), file_name), **kwargs) as f: return f.read()
명시적으로 utf-8 이라고 지정해 주면 좋을것 같습니다 long_description=read('README.rst', encoding='utf-8'),
long_description=read('README.rst', encoding='utf-8'),
The text was updated successfully, but these errors were encountered:
No branches or pull requests
cp949 인코딩 에러 뜹니다
read 함수를 이렇게 바꾸고...
명시적으로 utf-8 이라고 지정해 주면 좋을것 같습니다
long_description=read('README.rst', encoding='utf-8'),
= -> ==
The text was updated successfully, but these errors were encountered: