Spaces:
Running
Running
MilesCranmer
commited on
Commit
•
9f827be
1
Parent(s):
7135815
Ensure README is read as utf8
Browse files
setup.py
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
import setuptools
|
2 |
|
3 |
try:
|
4 |
-
with open("README.md", "r") as fh:
|
5 |
long_description = fh.read()
|
6 |
except FileNotFoundError:
|
7 |
long_description = ""
|
|
|
1 |
import setuptools
|
2 |
|
3 |
try:
|
4 |
+
with open("README.md", "r", encoding="utf8") as fh:
|
5 |
long_description = fh.read()
|
6 |
except FileNotFoundError:
|
7 |
long_description = ""
|