Skip to content

Commit

Permalink
updated with open
Browse files Browse the repository at this point in the history
  • Loading branch information
GitHub Actions committed Feb 27, 2024
1 parent 9b44b82 commit b3fa8c1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
import io
from setuptools import setup, find_packages

from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
with io.open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()

setup(
Expand Down

0 comments on commit b3fa8c1

Please sign in to comment.