Skip to content

Commit

Permalink
setup.py: open README.md with UTF-8 encoding
Browse files Browse the repository at this point in the history
Resolves #33
  • Loading branch information
lemmarathon authored and dlenski committed Mar 25, 2024
1 parent 646766b commit ea517d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def download_java_files(force=False):
name='zxing',
version=version_pep,
description="Wrapper for decoding/reading barcodes with ZXing (Zebra Crossing) library",
long_description=open('README.md').read(),
long_description=open('README.md', encoding='utf-8').read(),
long_description_content_type='text/markdown',
url="https://github.com/dlenski/python-zxing",
author='Daniel Lenski',
Expand Down

0 comments on commit ea517d0

Please sign in to comment.