summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--MANIFEST.in2
-rw-r--r--setup.py6
2 files changed, 5 insertions, 3 deletions
diff --git a/MANIFEST.in b/MANIFEST.in
index 4a54693..b6975e2 100644
--- a/MANIFEST.in
+++ b/MANIFEST.in
@@ -1,4 +1,4 @@
-include LICENSE.txt
+include LICENSE
include README.md
include requirements.txt
include setup.py
diff --git a/setup.py b/setup.py
index a6369c1..9f00f33 100644
--- a/setup.py
+++ b/setup.py
@@ -17,14 +17,16 @@ import os
def parse_requirements():
- fap = open("requirements.txt", "r")
+ fap = open("requirements.txt", "r", encoding="utf-8")
raw_req = fap.read()
fap.close()
return raw_req.split("\n")
def read(fname):
- with open(os.path.join(os.path.dirname(__file__), fname), "r") as fp:
+ with open(
+ os.path.join(os.path.dirname(__file__), fname), "r", encoding="utf-8"
+ ) as fp:
return fp.read()