minor bug fix
Browse files
setup.py
CHANGED
@@ -3,7 +3,7 @@ import setuptools
|
|
3 |
with open("README.md", "r") as f:
|
4 |
long_description = f.read()
|
5 |
|
6 |
-
with open('
|
7 |
required = ff.read().splitlines()
|
8 |
|
9 |
setuptools.setup(
|
|
|
3 |
with open("README.md", "r") as f:
|
4 |
long_description = f.read()
|
5 |
|
6 |
+
with open('requirements.txt', 'r', encoding='utf-16') as ff:
|
7 |
required = ff.read().splitlines()
|
8 |
|
9 |
setuptools.setup(
|