Skip to content

Commit c3058c8

Browse files
authored
Fix UTF-8 decoding error on Windows (#34)
Closes #31
1 parent 2a67972 commit c3058c8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
author="Souvik Mandal",
1313
author_email="souvik@nanonets.com",
1414
description="Onprem information extraction from documents",
15-
long_description=open("README.md").read(),
15+
long_description=open("README.md", encoding='utf-8').read(),
1616
long_description_content_type="text/markdown",
1717
url="https://github.com/nanonets/docext",
1818
packages=find_packages(include=["docext", "docext.*"]),

0 commit comments

Comments
 (0)