Skip to content

Commit

Permalink
Update setup.py
Browse files Browse the repository at this point in the history
Fixed all contributors encoding to UTF-8
  • Loading branch information
alenrajsp committed Jan 14, 2023
1 parent 65f1ea9 commit 49dffdb
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
# - *- coding: utf- 8 - *-

import setuptools

with open("README.md", "r") as fh:
with open("README.md", encoding='UTF-8', mode="r") as fh:
long_description = fh.read()

setuptools.setup(
Expand All @@ -22,5 +21,5 @@
"Development Status :: 4 - Beta",
],
python_requires='>=3.6',
test_suite="tests",
test_suite="tests"
)

0 comments on commit 49dffdb

Please sign in to comment.