tries to ignore
Browse files
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().
|
| 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(
|