andreped commited on
Commit
d222d16
1 Parent(s): 0fe6911

another test

Browse files
Files changed (1) hide show
  1. setup.py +3 -3
setup.py CHANGED
@@ -3,10 +3,10 @@ from setuptools.command.install import install
3
  import os
4
 
5
 
6
- with open("README.md", "rb") as f:
7
- long_description = f.read()
8
 
9
- with open('requirements.txt', 'rb') as ff:
10
  required = ff.read().decode("utf-16").splitlines()
11
 
12
 
 
3
  import os
4
 
5
 
6
+ with open("README.md", "r") as f:
7
+ long_description = f.read().decode("utf-16")
8
 
9
+ with open('requirements.txt', 'r') as ff:
10
  required = ff.read().decode("utf-16").splitlines()
11
 
12