andreped commited on
Commit
f082d09
1 Parent(s): 74d57ef

tries to ignore

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